The complete file-by-file source-of-truth hierarchy for Squad: which files are authoritative, which are derived/append-only, who may write each one, who may read each one, and the precedence rules when they conflict. Squad coordinator loads this on demand when it needs to resolve a write conflict, decide where a piece of state belongs, or answer a 'who owns this file' question.
npx skills add https://github.com/microsoft/Generative-AI-for-beginners-dotnet --skill coordinator-source-of-truth
> Load this skill when: the coordinator (or any agent) needs to resolve a "where does this state belong?" or "who is allowed to write this file?" question — e.g., when about to write .squad/decisions.md, when reviewing whether an agent broke the append-only rule, when answering a user question about Squad's file layout, or when adjudicating a conflict between two files. The short summary in squad.agent.md is for routing; this skill is the full reference.
Files below marked as "Derived / append-only" are mutable state — agents access them with runtime state tools (squad_state_read, squad_state_write, squad_state_append, squad_state_delete, squad_state_list). The runtime decides whether the configured backend stores them on disk, git-native state, or an external provider. Files marked as "Authoritative" are static config and always live on disk regardless of backend.
| File | Status | Who May Write | Who May Read |
|------|--------|---------------|--------------|
| .github/agents/squad.agent.md | Authoritative governance. All roles, handoffs, gates, and enforcement rules. | Repo maintainer (human) | Squad (Coordinator) |
| .squad/decisions.md | Authoritative decision ledger. Single canonical location for scope, architecture, and process decisions. | Squad (Coordinator) — append only | All agents |
| .squad/team.md | Authoritative roster. Current team composition. | Squad (Coordinator) | All agents |
| .squad/routing.md | Authoritative routing. Work assignment rules. | Squad (Coordinator) | Squad (Coordinator) |
| .squad/ceremonies.md | Authoritative ceremony config. Definitions, triggers, and participants for team ceremonies. | Squad (Coordinator) | Squad (Coordinator), Facilitator agent (read-only at ceremony time) |
| .squad/casting/policy.json | Authoritative casting config. Universe allowlist and capacity. | Squad (Coordinator) | Squad (Coordinator) |
| .squad/casting/registry.json | Authoritative name registry. Persistent agent-to-name mappings. | Squad (Coordinator) | Squad (Coordinator) |
| .squad/casting/history.json | Derived / append-only. Universe usage history and assignment snapshots. | Squad (Coordinator) — append only | Squad (Coordinator) |
| .squad/agents/{name}/charter.md | Authoritative agent identity. Per-agent role and boundaries. | Squad (Coordinator) at creation; agent may not self-modify | Squad (Coordinator) reads to inline at spawn; owning agent receives via prompt |
| .squad/agents/{name}/history.md | Derived / append-only. Personal learnings. Never authoritative for enforcement. | Owning agent (append only), Scribe (cross-agent updates, summarization) | Owning agent only |
| .squad/agents/{name}/history-archive.md | Derived / append-only. Archived history entries. Preserved for reference. | Scribe | Owning agent (read-only) |
| .squad/orchestration-log/ | Derived / append-only. Agent routing evidence. Never edited after write. | Scribe | All agents (read-only) |
| .squad/log/ | Derived / append-only. Session logs. Diagnostic archive. Never edited after write. | Scribe | All agents (read-only) |
| .squad/templates/ | Reference. Format guides for runtime files. Not authoritative for enforcement. | Squad (Coordinator) at init | Squad (Coordinator) |
| .squad/rai/policy.md | Authoritative RAI policy. Check categories, terminology standards, and opt-out rules. | Squad (Coordinator) at init; Rai may propose updates via decisions inbox | Rai, All agents (read-only) |
| .squad/rai/audit-trail.md | Derived / append-only. RAI review evidence log. Redacted — never contains raw secrets or harmful content. | Rai (append only) | Rai, Squad (Coordinator) |
| .squad/fact-checker/policy.md | Authoritative verification + Devil's Advocate policy. Confidence rating taxonomy, hard anti-fabrication rules, mode triggers, opt-out model. | Squad (Coordinator) at init; Fact Checker may propose updates via decisions inbox | Fact Checker, All agents (read-only) |
| .squad/fact-checker/audit-trail.md | Derived / append-only. Verification verdicts + DA brief evidence log. Succinct — verdict + citation, never raw source material. | Fact Checker (append only) | Fact Checker, Squad (Coordinator) |
| .squad/plugins/marketplaces.json | Authoritative plugin config. Registered marketplace sources. | Squad CLI (squad plugin marketplace) | Squad (Coordinator) |
squad.agent.md and any other file conflict, squad.agent.md wins. It is the only file with hard governance authority..squad/decisions.md.Integration with protocols.io API for managing scientific protocols. This skill should be used when working with protocols.io to search, create, update, or publish protocols; manage protocol steps and materials; handle discussions and comments; organize workspaces; upload and manage files; or integrate protocols.io functionality into workflows. Applicable for protocol discovery, collaborative protocol development, experiment tracking, lab protocol management, and scientific documentation.
Analyzes job descriptions and generates tailored resumes that highlight relevant experience, skills, and achievements to maximize interview chances
Generate Excalidraw diagrams from natural language descriptions. Use when asked to "create a diagram", "make a flowchart", "visualize a process", "draw a system architecture", "create a mind map", or "generate an Excalidraw file". Supports flowcharts, relationship diagrams, mind maps, and system architecture diagrams. Outputs .excalidraw JSON files that can be opened directly in Excalidraw.
Build and distribute Expo development clients locally or via TestFlight
Use when you have a written implementation plan to execute in a separate session with review checkpoints
Data structure for annotated matrices in single-cell analysis. Use when working with .h5ad files or integrating with the scverse ecosystem. This is the data format skill—for analysis workflows use scanpy; for probabilistic models use scvi-tools; for population-scale queries use cellxgene-census.
Benchling R&D platform integration. Access registry (DNA, proteins), inventory, ELN entries, workflows via API, build Benchling Apps, query Data Warehouse, for lab data management automation.
Comprehensive molecular biology toolkit. Use for sequence manipulation, file parsing (FASTA/GenBank/PDB), phylogenetics, and programmatic NCBI/PubMed access (Bio.Entrez). Best for batch processing, custom bioinformatics pipelines, BLAST automation. For quick lookups use gget; for multi-service integration use bioservices.
Take microsoft/coordinator-source-of-truth from the repository into ~/.claude/skills for personal
use, or into .claude/skills inside a project.
The agent identifies a skill by the name field in its header. Two skills with the
same name cannot sit side by side — one of them will be ignored.