Skip to content
DEVKIT INDEX

Skill definition

hi-craft

ALWAYS activate before implementing ANY feature, plan, or fix.

SKILL.md

Craft - Feature Implementation

Intent Detection

InputModeBehavior
--full, "full"fullFull workflow with research + review
--reviewreviewThere are gate reviews at the end.
--auto, "trust me", "yolo"autoAuto-approve all
--no-testno-testSkip testing
Path to plan.md/phase-*.mdcodeExecute existing plan
DefaultfastSkip research, skip review, fast test

Process Flow

[Plan] -> [Implement] -> [Test] -> [Finalize]

Mode Matrix

ModeResearchReviewTesting
fast (default)SkipSkipRun command
fullYesMUSTRun command
reviewSkipMUSTRun command
autoSkipAuto-passRun command
no-testSkipSkipSkip

Steps

Step 1: Plan (skip if plan.md provided)

  • Dùng sequential-thinking để phân tích task ngắn gọn
  • Dùng docs-seeker nếu cần tra cứu tài liệu
  • Không spawn planner riêng. Gọi hi-plan --fast inline nếu cần.

Step 2: Implement

Execute tasks trực tiếp. TaskUpdate in_progress trên mỗi task. Parallel mode: launch fullstack-developer per phase.

Step 3: Test (skip no-test)

Run test command. Xem output. Nếu fail:

  • Lần 1-2: tự phân tích và fix
  • Lần 3+: spawn hi-fix để debug chuyên sâu Không spawn tester riêng.

Step 4: Finalize

  1. TaskUpdate all tasks complete
  2. git commit
  3. /hi-log

Review (optional, flag --review hoặc full mode)

Run code-reviewer. Score>=9.5 + 0 critical = auto-approve (auto mode only). Max 3 fix cycles. Critical issues always block: Security, Performance, Architecture violations.

Continue exploring