ソース情報
- リポジトリ
- knowns-dev/knowns
- ソースの最終更新活動
- 2026年8月27日 06:37
- 検出された SKILL.md の言語
- 英語
- スター
- 241
- フォーク
- 50
インストール方法
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
ソースファイルを確認
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
メニュー
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
直接コマンドでは確認用 Prompt が省略されます。実行前にソースを確認してください。
npx skills add https://github.com/knowns-dev/knowns --skill kn-verifyコマンドは1行のまま表示されます。コピー前に横へスクロールして全体を確認してください。
ローカルで確認しますか?SkillsMP が現在取得できるファイルをダウンロードできます。
SKILL.md を表示中
| name | kn-verify |
| description | Use when running SDD verification and coverage reporting |
Run validation with SDD-awareness to check spec coverage and task status.
Announce: "Using kn-verify to check SDD status."
Core principle: VERIFY SPEC COVERAGE → REPORT WARNINGS → SUGGEST FIXES.
Spec Decision Compliance markers for in-review/done linked tasks; any conflict is a validation failureSystem Decision Impact: none — <reason> creates no candidateSystem Decision Impact: candidate @decision/<id> (added|changed|removed) — <summary> resolves to a persisted non-current candidate linked to originating workLocked Decisions section; ledger duplication is a validation failuredecision as legacy workflow drift and require first-class Decision capture insteadknowns validate --sdd --plain
mcp_knowns_validate({ "scope": "sdd" })
Return the verification result using the shared output contract:
The key-details portion may include a compact status block such as:
Specs: X total | Y approved | Z draft
Tasks: X total | Y done | Z in-progress | W todo
Coverage: X/Y tasks linked to specs (Z%)
Warnings:
- task-XX has no spec reference
- specs/feature: X/Y ACs incomplete
Passed:
- All spec references resolve
- specs/auth: fully implemented
- Spec Decisions: all linked D-IDs assessed with no conflicts
- System Decision Impact: declared and lifecycle-valid
- System Decision Impact refs: persisted with task/spec/source provenance
Good coverage (>80%):
SDD coverage is healthy. All tasks are properly linked to specs.
Medium coverage (50-80%):
Some tasks are missing spec references. Consider:
- Link existing tasks to specs:
knowns task edit <id> --spec specs/<name>- Create specs for unlinked work:
/kn-spec <feature-name>
Low coverage (<50%):
Many tasks lack spec references. For better traceability:
- Create specs for major features:
/kn-spec <feature>- Link tasks to specs:
knowns task edit <id> --spec specs/<name>- Use
/kn-plan --from @doc/specs/<name>for new tasks
Based on warnings, add the most relevant fixes inside the key-details section, then give one best next command only if a natural handoff exists:
For tasks without spec:
Link task to spec:
mcp_knowns_tasks({ "action": "update", > "taskId": "<id>", "spec": "specs/<name>" })
For incomplete ACs:
Check task progress:
knowns task <id> --plain
For approved specs without tasks:
Continue the approved spec through orchestration:
/kn-flow @doc/specs/<name>If the user only wants task generation:
/kn-plan --from @doc/specs/<name>
To validate a single task or doc (saves tokens):
// Validate single task
mcp_knowns_validate({ "entity": "abc123" })
// Validate single doc
mcp_knowns_validate({ "entity": "specs/user-auth" })
All built-in skills in scope must end with the same user-facing information order: kn-init, kn-spec, kn-flow, kn-go, kn-plan, kn-research, kn-handoff, kn-implement, kn-test, kn-review, kn-debug, kn-decision, kn-verify, kn-doc, kn-template, kn-extract, and kn-commit.
Required order for the final user-facing response:
Keep this concise for CLI use. Verification-specific content may extend the key-details section, but must not replace or reorder the shared structure.
Do not manage platform-synced skill copies; this source defines the built-in workflow contract.
For kn-verify, the key details should cover:
When verification reveals a clear follow-up, include the best next command. If the project is already healthy and no immediate workflow continuation is obvious, stop after the result and key details.
/kn-flow @doc/<spec-path> - Continue an approved spec with pending or missing task execution/kn-plan --from @doc/<spec-path> - Generate tasks only when verification shows an approved spec has none/kn-review <id> - Review implemented work before final verification/kn-decision - Resolve the Decision behind a missing, malformed, or conflicting System Decision Impact marker/kn-flow when an approved spec has pending execution/kn-flow is the better approved-spec handoff