소스 정보
- 저장소
- hardness1020/VibeFlow
- 최근 소스 활동
- 2026년 3월 19일 21:49
- 감지된 SKILL.md 언어
- 영어
- 스타
- 8
- 포크
- 0
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/hardness1020/VibeFlow --skill create-feature-spec명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
Create PRDs with success metrics for Stage A of the VibeFlow docs-first workflow
SKILL.md 표시 중
SOC 직업 분류 기준
| name | create-feature-spec |
| description | Create Feature Specs for Stage E of the VibeFlow docs-first workflow |
| metadata | {"triggers":["create feature spec","write feature","design feature","acceptance criteria","API design","Stage E","feature planning"]} |
Create Feature Specs for Stage E of the VibeFlow docs-first workflow.
This skill creates Feature Spec documents that:
Stage E: Feature Spec
│
├── Define API Design (exact signatures)
├── Write testable acceptance criteria
├── Document design changes (UI/API/schema)
├── Create test and evaluation plan
├── Map telemetry and metrics
└── Reference discovery findings and specs
/create-feature-spec <ID> <slug>
Creates docs/features/ft-<ID>-<slug>.md with required sections.
Example:
/create-feature-spec 030 anti-hallucination
/create-feature-spec validate <ID>
Validates that the feature spec has all required sections.
/create-feature-spec schedule
Updates docs/features/schedule.md with feature status.
For All Features:
For Medium/Large Features (Additional):
The API Design section defines the contract for Stage F (test writing):
## API Design
### ServiceName.method_name()
- **Signature:** `method_name(param: Type, param2: Type = default) -> ReturnType`
- **Purpose:** [Brief description]
- **Parameters:**
- `param`: [Description]
- `param2`: [Description, default value]
- **Returns:** [Description of return type and structure]
### API Endpoint: POST /api/v1/endpoint
- **Method:** POST
- **Path:** `/api/v1/endpoint`
- **Request Body:**
```json
{
"field": "type"
}
{
"result": "type"
}
Why This Matters:
Format as testable checklist or Gherkin:
## Acceptance Criteria
- [ ] User can [action] with [condition] resulting in [outcome]
- [ ] System returns [response] when [condition]
- [ ] Error [X] is shown when [condition]
Or Gherkin:
Given [context]
When [action]
Then [expected outcome]
scripts/validate_feature.py — Validate feature spec structure and API DesignSee assets/:
feature-template.md — Complete feature spec templateSee references/:
api-design-guide.md — API Design section guidanceFollow the workflow in .claude/rules/context7-research.md to fetch current library documentation.
What to look for: exact method signatures, error types, configuration options, parameter defaults.
Where to incorporate findings:
After completing Stage E, update docs/workflow-state.yaml:
stage: Edocs.feature: docs/features/ft-<ID>-<slug>.mdCheckpoint #2 (after Stage E):
checkpoint: 2 after passing validationAfter completing this stage, ask the user for permission before committing:
git add docs/features/ft-<ID>-<slug>.md docs/workflow-state.yaml
git commit -m "feat(feature): define <slug> feature spec (#ft-<ID>)"
Replace <ID> and <slug> with actual values.
After the commit is complete, directly run /manage-work advance <ID> to advance to the next stage.
The advance command will automatically validate Checkpoint #2 at the E→F boundary.