claudex-build
Run an agent team to implement a planned feature
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Run an agent team to implement a planned feature
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
Create and orchestrate a Claude Code agent team for feature implementation
Post-merge cleanup for a completed feature
Naming conventions for features, branches, docs, and commits
Brainstorm a feature, produce design + e2e test plan, and create a draft PR
Generate blackbox e2e smoke test plans for features
| name | claudex-build |
| description | Run an agent team to implement a planned feature |
Execute a feature's implementation plan using an agent team.
Read config.json from the feature docs directory:
FULL_NAME=$(basename "$(git rev-parse --show-toplevel)")
CONFIG="docs/features/${FULL_NAME}/config.json"
if [[ ! -f "$CONFIG" ]]; then
echo "No config.json found. Run 'claudex new <name>' first." >&2
exit 1
fi
Verify these files exist in the feature's docsDir:
design.md — feature design (from /claudex-plan)testing-plan.md — e2e test plan (from /claudex-plan)config.json — feature stateIf any are missing, stop and tell the user to run /claudex-plan first.
Parse config.json to get:
fullName, docsDir, worktreePath, gitBrancharchitectSessionId (may be null)tmux (may be null)If tmux is not null in config:
config.tmux.panes
Else:Ask the user to confirm display mode if unsure.
REQUIRED: Use the agent-team skill.
Provide the agent team with:
<docsDir> (contains design.md, testing-plan.md)<worktreePath> on branch <gitBranch><architectSessionId> from config (tell team "no architect available" if null)The agent team handles the full pipeline: Planner -> Implementer -> Tester -> Fixer -> Code Reviewer.
After the agent team completes:
Build complete for <fullName>.
Branch: <gitBranch>
PR: <prUrl>
Next: review the PR, then run /claudex-finish after merge.