swarmvault
정보
이 스킬은 SwarmVault 지식 저장소와 작업할 때 사용하며, 구조화된 세 계층 시스템(raw/, wiki/, state/)과 상호작용합니다. `swarmvault.schema.md`를 통해 스키마 우선 규칙을 적용하고, 효율적인 지식 검색을 위해 광범위한 검색보다 정밀한 그래프 쿼리를 우선시합니다.
빠른 설치
Claude Code
추천npx skills add swarmclawai/swarmclaw -a claude-code/plugin add https://github.com/swarmclawai/swarmclawgit clone https://github.com/swarmclawai/swarmclaw.git ~/.claude/skills/swarmvaultClaude Code에서 이 명령을 복사하여 붙여넣어 스킬을 설치하세요
문서
SwarmVault
Use when the agent has a SwarmVault MCP server enabled (transport stdio, command npx -y @swarmvaultai/cli mcp) pointed at a vault directory.
A SwarmVault workspace is a three-layer knowledge system:
raw/— immutable source inputs (PDFs, transcripts, code, emails, URLs, sheets). Never edit.wiki/— generated markdown owned by the agent and the SwarmVault compiler. Pages carry frontmatter (page_id,source_ids,node_ids,freshness,source_hashes).state/— generated indexes, graphs, and approvals. Treat as opaque output ofcompile.
The vault contract lives in swarmvault.schema.md at the workspace root. The vault config lives in swarmvault.config.json.
Rules
- Read
swarmvault.schema.mdfirst before any compile or query work. It defines categories, naming, freshness rules, and grounding conventions for this specific vault. - Read
wiki/graph/report.mdbefore broad file searching when it exists; otherwise start withwiki/index.md. Both summarize the vault structure so you don't re-scan everything. - Treat
raw/as immutable. Never edit, rename, or delete files there. New sources go throughingest. - Treat
wiki/as compiler-owned. Edits should preserve frontmatter fields exactly:page_id,source_ids,node_ids,freshness,source_hashes. If those drift, the nextcompilewill overwrite or flag the page. - Prefer graph queries over grep/glob for "how does X relate to Y" or "what depends on Z" questions. The vault's typed graph is more reliable than text search.
- Save high-value answers to
wiki/outputs/(use thequeryorexploretools) instead of leaving them only in chat. That way they become first-class vault content for next time.
Tool Palette
The SwarmVault MCP server exposes the following tools (names are prefixed by SwarmClaw with mcp_<sanitized server name>_, e.g. mcp_SwarmVault_query_vault). Match the user's intent to the closest tool:
Vault inspection:
workspace_info— return current vault paths and high-level counts. Use this first when you've never seen this vault.list_sources— list source manifests underraw/.search_pages— full-text search across compiled wiki pages.read_page— read a specific wiki page by itswiki/-relative path.
Graph (prefer over grep for relational questions):
graph_report— machine-readable graph report and trust artifact. Read this before broad searching.query_graph— traverse the graph from search seeds without calling an LLM provider.get_node— explain a graph node, its page, community, neighbors, and group patterns.get_neighbors— neighbors of a node or page target.get_hyperedges— list graph hyperedges, optionally filtered.shortest_path— shortest path between two graph targets.god_nodes— highest-connectivity nodes (the vault's hubs).blast_radius— impact analysis: what depends on this file or module?
Question answering:
query_vault— natural-language question against the vault. Returns grounded citations. Passsave: trueto persist the answer towiki/outputs/.
Ingest and maintenance:
ingest_input— add a file path or URL toraw/and register it as a managed source.compile_vault— re-derivewiki/pages, graph, and search index. Run after ingest, after schema changes, or when freshness is stale.lint_vault— anti-drift and vault health checks.
If the MCP server is unavailable but the agent has a shell or execute tool, the same operations are available via swarmvault <subcommand> (or npx -y @swarmvaultai/cli <subcommand>) with the working directory set to the vault root.
Workflow
For a fresh question against the vault:
- Call
workspace_infoif you haven't already, then readswarmvault.schema.md. Ifwiki/graph/report.mdorwiki/index.mdexists, skim it. - Use
query_vault(orquery_graph/get_node/shortest_pathfor relational questions). Cite returnedsource_idsandnode_ids. - If the answer reveals a gap, propose
ingest_inputfor the missing source, thencompile_vault. - Save the final answer with
query_vaultsave: trueso it becomes vault content underwiki/outputs/.
For a new source the user mentions:
ingest_inputthe file/URL.compile_vaultto derive new wiki pages, graph, and search index.lint_vaultto check frontmatter and links.- Skim the new pages in
wiki/sources/and confirm provenance.
Boundaries
- Don't run
compileagainst an unreviewed change toswarmvault.schema.md—lintfirst. - Don't promote candidate pages (
wiki/candidates/) towiki/concepts/orwiki/entities/without the user's confirmation; the approval flow exists for a reason. - Don't push the vault graph to Neo4j or export to Obsidian without an explicit ask.
GitHub 저장소
연관 스킬
llamaguard
기타LlamaGuard는 폭력 및 혐오 발언 등 6가지 안전 범주에서 LLM 입력과 출력을 조정하기 위한 Meta의 70-80억 파라미터 모델입니다. 94-95% 정확도를 제공하며 vLLM, Hugging Face 또는 Amazon SageMaker를 사용해 배포할 수 있습니다. 이 기술을 사용하여 AI 애플리케이션에 콘텐츠 필터링 및 안전 가드레일을 손쉽게 통합하세요.
cost-optimization
기타이 Claude Skill은 리소스 적정화, 태깅 전략, 지출 분석을 통해 개발자들이 클라우드 비용을 최적화할 수 있도록 지원합니다. AWS, Azure, GCP에서 클라우드 비용을 절감하고 비용 거버넌스를 구현하기 위한 프레임워크를 제공합니다. 인프라 비용을 분석하거나, 리소스를 적정화하거나, 예산 제약을 충족해야 할 때 사용하세요.
quantizing-models-bitsandbytes
기타이 스킬은 bitsandbytes를 사용하여 LLM을 8비트 또는 4비트 정밀도로 양자화하며, 최소한의 정확도 손실로 50-75%의 메모리 감소를 달성합니다. 제한된 GPU 메모리에서 더 큰 모델을 실행하거나 추론을 가속화하는 데 이상적이며, INT8, NF4, FP4와 같은 형식을 지원합니다. 이 스킬은 HuggingFace Transformers와 통합되어 QLoRA 학습 및 8비트 옵티마이저를 가능하게 합니다.
dispatching-parallel-agents
기타이 Claude Skill은 3개 이상의 독립적인 문제를 동시에 조사하고 해결하기 위해 다중 에이전트를 배치합니다. 공유 상태나 의존성 없이 해결 가능한 무관련 장애 시나리오에 맞게 설계되었습니다. 핵심 기능은 병렬 문제 해결로, 각 독립 문제 영역마다 하나의 에이전트를 할당하여 효율성을 극대화합니다.
