소스 정보
- 저장소
- tractorjuice/arckit-kimi
- 최근 소스 활동
- 2026년 7월 24일 22:39
- 감지된 SKILL.md 언어
- 영어
- 스타
- 0
- 포크
- 0
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
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
SOC 직업 분류 기준
| 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)