用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/diegosouzapw/awesome-omni-skill --skill bootstrap-phase-workflow命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Token-efficient tracking for AI orchestration. CLI-first for status updates (~50 tokens), agent fallback for complex ops (~1KB). Use when: updating task status, querying blockers, creating progress files, validating phases.
AshAi extension guidelines for integrating AI capabilities with Ash Framework. Use when implementing vectorization/embeddings, exposing Ash actions as LLM tools, creating prompt-backed actions, or setting up MCP servers. Covers semantic search, LangChain integration, and structured outputs.
This skill should be used when solving hard questions, complex architectural problems, or debugging issues that benefit from GPT-5 Pro or GPT-5.1 thinking models with large file context. Use when standard Claude analysis needs deeper reasoning or extended context windows.
基于 SOC 职业分类
正在显示 SKILL.md
| name | bootstrap-phase-workflow |
| description | Integrate the vibe/mature phase workflow into a project |
| disable-model-invocation | true |
| allowed-tools | ["Read","Write","Edit","Bash","Glob","Grep","Task","AskUserQuestion"] |
Integrate the two-phase (vibe → mature) development workflow into the current project. The phase-workflow repo is located at ../phase-workflow relative to the target project.
Copy everything from ../phase-workflow/scaffold/ into the project root, preserving directory structure:
.claude/phase.claude/settings.json.claude/skills/vibe/SKILL.md.claude/skills/phase/SKILL.md.husky/pre-commit.husky/commit-msg.lintstagedrc.jsoncommitlint.config.jsMake .husky/pre-commit and .husky/commit-msg executable.
If .claude/settings.json already exists, merge the hooks from the scaffold into the existing file rather than overwriting.
Read through the project to determine:
src/main.tsx, src/index.ts, api/*.ts). Look at existing package.json scripts and tsconfig*.json for hints.src/, api/, lib/).tsconfig.app.json, tsconfig.api.json).Read ../phase-workflow/templates/knip.json as a reference. Create knip.json in the project root with the detected entry points and project globs.
Read ../phase-workflow/templates/eslint.config.js as a reference. Create eslint.config.js adapted to the project:
strictTypeCheckedIf the project already has an ESLint config, upgrade it to strictTypeChecked and add the phase-workflow rules rather than replacing it entirely.
Read ../phase-workflow/templates/mature-SKILL.md as a reference. Create .claude/skills/mature/SKILL.md with the {{CORE_MODULES}} placeholder replaced with the actual core module paths detected in step 2.
Read ../phase-workflow/templates/devDependencies.json and ../phase-workflow/templates/scripts.json. Merge them into the project's package.json:
"prepare": "husky" is presentRun npm install.
If the project doesn't have a CLAUDE.md, create one. If it does, add the phase workflow section.
The CLAUDE.md should include:
satisfies over as! non-null assertionsTell the user what was set up and that the project is now in vibe phase. Mention that /vibe, /mature, and /phase skills are available.