swarmvault
Acerca de
Utilice esta habilidad cuando trabaje con una bóveda de conocimiento SwarmVault para interactuar con su sistema estructurado de tres capas (raw/, wiki/, state/). Impone convenciones de esquema primero mediante `swarmvault.schema.md` y prioriza consultas de grafos precisas sobre búsquedas amplias para una recuperación eficiente del conocimiento.
Instalación rápida
Claude Code
Recomendadonpx skills add swarmclawai/swarmclaw -a claude-code/plugin add https://github.com/swarmclawai/swarmclawgit clone https://github.com/swarmclawai/swarmclaw.git ~/.claude/skills/swarmvaultCopia y pega este comando en Claude Code para instalar esta habilidad
Documentación
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.
Repositorio GitHub
Habilidades relacionadas
llamaguard
OtroLlamaGuard es el modelo de Meta de 7-8B parámetros para moderar las entradas y salidas de LLM en seis categorías de seguridad como violencia y discurso de odio. Ofrece una precisión del 94-95% y puede implementarse usando vLLM, Hugging Face o Amazon SageMaker. Utiliza esta skill para integrar fácilmente filtrado de contenido y barreras de seguridad en tus aplicaciones de IA.
cost-optimization
OtroEsta Skill de Claude ayuda a los desarrolladores a optimizar los costes en la nube mediante el ajuste de tamaño de recursos, estrategias de etiquetado y análisis de gastos. Proporciona un marco para reducir los gastos en la nube e implementar una gobernanza de costes en AWS, Azure y GCP. Úsala cuando necesites analizar los costes de infraestructura, ajustar el tamaño de los recursos o cumplir con restricciones presupuestarias.
quantizing-models-bitsandbytes
OtroEsta habilidad cuantiza LLMs a precisión de 8 o 4 bits utilizando bitsandbytes, logrando una reducción de memoria del 50-75% con pérdida mínima de precisión. Es ideal para ejecutar modelos más grandes en memoria GPU limitada o para acelerar la inferencia, admitiendo formatos como INT8, NF4 y FP4. La habilidad se integra con HuggingFace Transformers y permite entrenamiento QLoRA y optimizadores de 8 bits.
dispatching-parallel-agents
OtroEsta Skill de Claude despliega múltiples agentes para investigar y solucionar 3 o más problemas independientes de forma concurrente. Está diseñada para escenarios que involucran fallos no relacionados que pueden resolverse sin estado compartido o dependencias. Su capacidad principal es la resolución paralela de problemas, asignando un agente por cada dominio problemático independiente para maximizar la eficiencia.
