update first - 84

This commit is contained in:
thanhnv
2026-06-30 02:21:39 +09:00
commit 07ac1bdcdd
561 changed files with 88164 additions and 0 deletions
@@ -0,0 +1,53 @@
---
description: Run the full AI-SDLC pipeline end-to-end (fully autonomous, no pauses)
allowed-tools: Agent, Read, Write, Edit, Bash, Glob, Grep, TodoWrite, WebFetch, WebSearch
---
⚠️ **MANDATORY**: You MUST spawn the `okr.bossbuiltin` sub-agent via the **Agent tool**.
**DO NOT implement anything yourself. DO NOT skip to coding. DO NOT generate docs directly.**
Your ONLY job in this turn: prepare structured arguments → call Agent tool → wait for completion.
---
## Step 1 — Derive feature-id
Read `docs/output/output_logs/` to list existing feature folders:
```
Get-ChildItem docs/output/output_logs/ -Directory | Select-Object Name
```
- If directory is empty or does not exist → use `okr-feat-001`
- If folders exist → increment the highest number (e.g., `okr-feat-003` → `okr-feat-004`)
Do NOT reuse an existing feature-id unless the user explicitly says "resume" or "continue".
---
## Step 2 — Spawn the Boss Agent via Agent tool
Call the **Agent tool** with:
- `subagent_type`: `"okr.bossbuiltin"`
- `prompt`: the structured YAML block below followed by the feature description
```yaml
feature-id: <derived-feature-id>
module-id: mod01
module-keyword: OKR
pipeline-context: docs/output/output_logs/<feature-id>/pipeline-context.yaml
mode: autonomous
language: Vietnamese
```
Feature description:
$ARGUMENTS
---
## Step 3 — Do nothing else
Wait for the Agent tool to return. The boss agent runs the full 13-step pipeline:
SRS → BD → Spec → Clarify → Review → Plan → Review → DD → Test Cases → Tasks → Implement → Code Review → QA → Launch
Do not intervene, generate code, or produce documents yourself.
If Agent tool is unavailable, inform the user: "The okr.bossbuiltin agent is required. Please ensure it is registered in .claude/agents/okr.bossbuiltin.md."
@@ -0,0 +1,9 @@
---
description: Review generated code for quality, correctness, and DB data integrity
allowed-tools: Agent, Read, Write, Edit, Bash, Glob, Grep, TodoWrite, WebFetch, WebSearch
---
Use the **okr.reviewcode** agent to process this request.
$ARGUMENTS
@@ -0,0 +1,9 @@
---
description: Review OKR feature specification for quality and completeness
allowed-tools: Agent, Read, Write, Edit, Bash, Glob, Grep, TodoWrite, WebFetch, WebSearch
---
Use the **okr.reviewspec** agent to process this request.
$ARGUMENTS
@@ -0,0 +1,9 @@
---
description: Generate system-wide SRS covering all modules (run once before pipeline)
allowed-tools: Agent, Read, Write, Edit, Bash, Glob, Grep, TodoWrite, WebFetch, WebSearch
---
Use the **okr.srsallsystem** agent to process this request.
$ARGUMENTS
@@ -0,0 +1,9 @@
---
description: Generate SRS document for an OKR module
allowed-tools: Agent, Read, Write, Edit, Bash, Glob, Grep, TodoWrite, WebFetch, WebSearch
---
Use the **okr.srs** agent to process this request.
$ARGUMENTS
@@ -0,0 +1,9 @@
---
description: Cross-artifact consistency analysis across spec, plan, and tasks
allowed-tools: Agent, Read, Write, Edit, Bash, Glob, Grep, TodoWrite, WebFetch, WebSearch
---
Use the **speckit.analyze** agent to process this request.
$ARGUMENTS
@@ -0,0 +1,9 @@
---
description: Generate quality checklists for a feature
allowed-tools: Agent, Read, Write, Edit, Bash, Glob, Grep, TodoWrite, WebFetch, WebSearch
---
Use the **speckit.checklist** agent to process this request.
$ARGUMENTS
@@ -0,0 +1,9 @@
---
description: Resolve ambiguities in a feature spec without pausing
allowed-tools: Agent, Read, Write, Edit, Bash, Glob, Grep, TodoWrite, WebFetch, WebSearch
---
Use the **speckit.clarify** agent to process this request.
$ARGUMENTS
@@ -0,0 +1,9 @@
---
description: Define or update the project constitution
allowed-tools: Agent, Read, Write, Edit, Bash, Glob, Grep, TodoWrite, WebFetch, WebSearch
---
Use the **speckit.constitution** agent to process this request.
$ARGUMENTS
@@ -0,0 +1,9 @@
---
description: Execute implementation from tasks.md
allowed-tools: Agent, Read, Write, Edit, Bash, Glob, Grep, TodoWrite, WebFetch, WebSearch
---
Use the **speckit.implement** agent to process this request.
$ARGUMENTS
@@ -0,0 +1,9 @@
---
description: Create implementation plan from spec.md
allowed-tools: Agent, Read, Write, Edit, Bash, Glob, Grep, TodoWrite, WebFetch, WebSearch
---
Use the **speckit.plan** agent to process this request.
$ARGUMENTS
@@ -0,0 +1,9 @@
---
description: Create or update a feature specification from a natural language description
allowed-tools: Agent, Read, Write, Edit, Bash, Glob, Grep, TodoWrite, WebFetch, WebSearch
---
Use the **speckit.specify** agent to process this request.
$ARGUMENTS
@@ -0,0 +1,9 @@
---
description: Generate task list from plan.md
allowed-tools: Agent, Read, Write, Edit, Bash, Glob, Grep, TodoWrite, WebFetch, WebSearch
---
Use the **speckit.tasks** agent to process this request.
$ARGUMENTS
@@ -0,0 +1,9 @@
---
description: Convert task list to GitHub issues
allowed-tools: Agent, Read, Write, Edit, Bash, Glob, Grep, TodoWrite, WebFetch, WebSearch
---
Use the **speckit.taskstoissues** agent to process this request.
$ARGUMENTS