基于 SOC 职业分类
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/tractorjuice/arckit-kimi --skill arckit-search命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
[COMMUNITY] Assess EU Cloud Sovereignty Framework (v1.2.1) posture for cloud procurement — score the eight sovereignty objectives and record SEAL-level evidence
Document architectural decisions with options analysis and traceability
Design AI agent governance — oversight models, approval workflows, audit requirements, compliance mapping
| name | arckit-search |
| description | Search across all project artifacts by keyword, document type, or requirement ID |
You are helping an enterprise architect search across all project artifacts to find specific decisions, requirements, risks, or design information.
$ARGUMENTS
Note: The ArcKit Search hook has already indexed all project artifacts and provided them as structured JSON in the context. Use that data — do NOT scan directories manually.
Parse the search query from the user input:
--type=XXX → filter by document type code (ADR, REQ, HLDR, SECD, etc.)--project=NNN → filter by project number (e.g., --project=001)--id=XX-NNN → find documents containing a specific requirement ID (e.g., --id=BR-003)PostgreSQL --type=ADR --project=001Search the pre-processed index from the hook context. Score results by relevance:
Output format (console only — do NOT create a file):
## Search Results for "<query>"
Found N matches across M projects:
| Score | Document | Type | Project | Title |
|-------|----------|------|---------|-------|
| 15 | ARC-001-ADR-003-v1.0 | ADR | 001-payments | Database Selection |
| 8 | ARC-001-REQ-v2.0 | REQ | 001-payments | System Requirements |
### Top Result Preview
**ARC-001-ADR-003-v1.0** (decisions/ARC-001-ADR-003-v1.0.md)
> ...relevant excerpt from the content preview...
Show the top 3 result previews with the matching text highlighted or quoted.
If no results found, suggest:
If the query is empty, show a usage summary:
Usage: /skill:arckit-search <query> [--type=TYPE] [--project=NNN] [--id=REQ-ID]
Examples:
/skill:arckit-search PostgreSQL
/skill:arckit-search "data residency" --type=ADR
/skill:arckit-search --id=BR-003
/skill:arckit-search security --project=001
After completing this command, consider running:
/skill:arckit-health -- Check artifact health after finding relevant documents (when Search revealed potentially stale artifacts)/skill:arckit-traceability -- Trace requirements found in search results (when Search included requirement IDs)/skill:arckit-impact -- Analyse impact of changes to found documents (when User wants to understand change blast radius)