Documentation

Orient project documentation and discover contracts before architecture edits.

5|Updated May 6, 2026
One-click install
npx skills add https://github.com/binary16labs/prime-silo --skill documentation-binary16labs
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: Documentation
Source: https://github.com/binary16labs/prime-silo/tree/main/app/L0/_all/mod/_core/documentation/ext/skills/documentation
Command: npx skills add https://github.com/binary16labs/prime-silo --skill documentation-binary16labs

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

It prevents wasted time and mis-edits by guiding you to the correct project documentation module and the specific doc pages that define the relevant contracts.

Core Features & Use Cases

  • Project orientation before architecture edits: Helps you understand the system shape and boundaries before answering architecture questions or changing behavior.
  • Targeted, contract-first documentation reading: Encourages one focused read() call per session and prioritizes documentation indices so you don’t load many large pages unnecessarily.
  • Doc-to-code change discipline: Directs you to confirm the owning AGENTS.md contract after orientation and to update both docs and contract files when workflows or contracts change.
  • Examples: Use it when you are unsure which module owns a UI primitive, how routing works for server pages, or where to find the skill/documentation discovery rules.

Quick Start

Use the Documentation skill to read the most relevant architecture and contract pages before proposing any changes.

Frequently Asked Questions about Documentation

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I find project documentation for architecture guidance before editing code?

To get architecture guidance, read the project documentation index and README first to understand system boundaries. Use targeted nested markdown reads to locate the specific contracts and runtime layer docs, prioritizing one focused read per session to avoid loading unnecessary pages.

What is the best way to discover contract ownership in an AGENTS.md file?

Contract discovery in AGENTS.md involves loading the documentation helper module to perform targeted nested markdown reads. You must confirm the owning AGENTS.md contract after orientation to identify module ownership boundaries before proposing any code changes.

How do I keep documentation synchronized when updating code contracts?

To keep documentation synchronized, update both the relevant documentation pages and the AGENTS.md contract files together. Follow the update synchronization rules between AGENTS.md and the /mod/_core/documentation/docs/ directory whenever workflows or contracts change.

When do I need to read frontend runtime documentation for a project?

You need frontend runtime documentation when you are unsure which module owns a UI primitive or how routing works for server pages. Reading the docs index first helps you select the right runtime layer documentation before answering architecture questions.

Does this approach to project documentation orientation require loading all markdown files?

No, project documentation orientation discourages loading many large pages. It encourages one focused read() call per session and prioritizes documentation indices so you can target specific contract pages without unnecessary file loading overhead.