소스 정보
- 저장소
- cowcow02/agentfleet
- 최근 소스 활동
- 2026년 4월 9일 07:32
- 감지된 SKILL.md 언어
- 영어
- 스타
- 0
- 포크
- 0
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
SKILL.md 표시 중
SKILL.md
소스 지침 · 읽기 전용 미리보기- name
- harness-implement
- description
- Phase skill: TDD implementation — write tests first, then make them pass
- user-invocable
- false
## Purpose
Implement the change using TDD: write failing tests, then write code to make them pass.
## Steps
1. **Read the plan** from state outputs.
- **Standard / full profile:** `state.outputs.plan` exists (written by `harness-plan`). Use it.
- **Quick profile:** `harness-plan` is skipped, so `state.outputs.plan` is missing. Fall back to `state.outputs.pickup` (ticket title, description, requirements) and infer the work directly. Quick profile is meant for trivial changes (typos, small fixes) where a formal plan would be overkill — keep the implementation surface tight and skip TDD ceremony if the change is a one-liner.
2. **If schema changes needed:**
- Update Drizzle schema in `packages/db/src/schema.ts`
- Update Zod types in `packages/types/src/entities.ts` and/or `api.ts`
- Run `pnpm --filter @agentfleet/db drizzle-kit generate` to create migration
3. **TDD cycle — for each change in the plan:**
- **Red:** Write the test first. Place tests in colocated `__tests__/` directories:
- API tests: `apps/api/src/**/__tests__/`
- Web tests: `apps/web/**/__tests__/` or `apps/web/components/__tests__/`
- Type tests: `packages/types/src/__tests__/`
- **Green:** Write the minimum code to make the test pass
- **Refactor:** Clean up while tests stay green
- Run the specific test to confirm: `pnpm --filter <package> vitest run <test-file>`
4. **Follow existing patterns:**
- API routes: Hono router in `apps/api/src/routes/`, register in `apps/api/src/index.ts`
- Zod validation: shared types in `packages/types/`, imported by both api and web
- Frontend: React components in `apps/web/components/`, pages in `apps/web/app/(dashboard)/`
- DB queries: use Drizzle query builder, import `db` from `@agentfleet/db`
5. **Record to conversation file:**
- **Insert before** the `## Harness Issues` marker in `.harness/conversations/<task-id>.md` (use Edit tool with `## Harness Issues` as the anchor — do NOT literally append, that would land below the issues section):
```
## Implement
**Tests written:** <count>
**Files changed:** <list>
**Key decisions:** <any deviations from plan>
```
- **If you hit friction** while implementing (failed test approach, unclear pattern, retried more than once, plan revision), append an entry to the **literal end** of the file — it will land inside the `## Harness Issues` section since that section is last.
## Checklist
- [ ] Tests written before implementation
- [ ] All new tests pass
- [ ] Existing tests not broken
- [ ] Schema migration generated (if applicable)
- [ ] Follows existing code patterns
- [ ] Conversation file updated
## Escalation
- If a test is fundamentally impossible to write (e.g., requires infrastructure not available), note it and proceed
- If implementation reveals the plan was wrong, go back and update the plan in state before continuing
- Stuck after 2 attempts → surface to human with what you tried
GitHub에서 보기