Skill · em Planejar o trabalho
context-architecture
Audit a codebase and bind every claim it makes about itself to a mechanism that fails when the claim stops being true, so it is legible to people and AI agents. Applies Context Architecture's nine principles: make structure say what the system does, place AGENTS.md at boundaries, codify…
Procedência
- Origem: davila7/claude-code-templates
- Caminho:
cli-tool/components/skills/development/context-architecture - Versão fixada:
57f899e5394bb8ca166f38eacae8f0853cbfe033 - Licença: CC-BY-4.0
- Espelhado em 25/09/2026
- nenhum download no Claude Code Templates (lido em 25/09/2026)
Antes de instalar
1 arquivo · 19,6 KB · só texto, nenhum script
Instalar na sua CLI
O comando baixa a versão fixada (commit 57f899e) direto da origem, para a pasta que a CLI lê. Precisa de curl (macOS e Linux); no Windows não há comando, porque o Rook Labs é para macOS.
Claude Code
Neste projeto: instala em .claude/skills/context-architecture/.
d=".claude/skills/context-architecture" u="https://raw.githubusercontent.com/davila7/claude-code-templates/57f899e5394bb8ca166f38eacae8f0853cbfe033/cli-tool/components/skills/development/context-architecture" curl -fsSL --create-dirs \ -o "$d/SKILL.md" "$u/SKILL.md"
Global: instala em ~/.claude/skills/context-architecture/.
d="$HOME/.claude/skills/context-architecture" u="https://raw.githubusercontent.com/davila7/claude-code-templates/57f899e5394bb8ca166f38eacae8f0853cbfe033/cli-tool/components/skills/development/context-architecture" curl -fsSL --create-dirs \ -o "$d/SKILL.md" "$u/SKILL.md"
Codex
Neste projeto: instala em .agents/skills/context-architecture/.
d=".agents/skills/context-architecture" u="https://raw.githubusercontent.com/davila7/claude-code-templates/57f899e5394bb8ca166f38eacae8f0853cbfe033/cli-tool/components/skills/development/context-architecture" curl -fsSL --create-dirs \ -o "$d/SKILL.md" "$u/SKILL.md"
Global: instala em ~/.agents/skills/context-architecture/.
d="$HOME/.agents/skills/context-architecture" u="https://raw.githubusercontent.com/davila7/claude-code-templates/57f899e5394bb8ca166f38eacae8f0853cbfe033/cli-tool/components/skills/development/context-architecture" curl -fsSL --create-dirs \ -o "$d/SKILL.md" "$u/SKILL.md"
Antigravity
Neste projeto: instala em .agents/skills/context-architecture/.
d=".agents/skills/context-architecture" u="https://raw.githubusercontent.com/davila7/claude-code-templates/57f899e5394bb8ca166f38eacae8f0853cbfe033/cli-tool/components/skills/development/context-architecture" curl -fsSL --create-dirs \ -o "$d/SKILL.md" "$u/SKILL.md"
Global: instala em ~/.gemini/antigravity-cli/skills/context-architecture/.
d="$HOME/.gemini/antigravity-cli/skills/context-architecture" u="https://raw.githubusercontent.com/davila7/claude-code-templates/57f899e5394bb8ca166f38eacae8f0853cbfe033/cli-tool/components/skills/development/context-architecture" curl -fsSL --create-dirs \ -o "$d/SKILL.md" "$u/SKILL.md"
Peça ao Rook
Já usa o Rook Labs? Cole no chat do Rook: instale a skill https://rooklabs.sh/marketplace/cct.context-architecture
Prévia do SKILL.md
---
name: context-architecture
description: >-
Audit a codebase and bind every claim it makes about itself to a mechanism that fails when the claim
stops being true, so it is legible to people and AI agents. Applies Context Architecture's nine principles: make structure say what
the system does, place AGENTS.md at boundaries, codify conventions, and bind every claim the repo
makes about itself to a mechanism (compiler, linter, automated tests, review) that fails when the
claim stops being true. Works greenfield (a repo born legible) and brownfield (a repo restructured
in steps). Use when an agent reimplements code that already exists, invents structure, follows
stale or deleted docs, propagates a deprecated pattern, or resolves ambiguity at random, or when
asked to make a repository "agent-ready", "AI-legible", or to add or fix AGENTS.md / CLAUDE.md
files. Related terms: harness engineering, context files, instruction bloat, cognitive debt, agent
readiness.
license: CC-BY-4.0
metadata:
source: https://context-architecture.dev
author: Sergio Azócar
version: "0.3.0"
term-introduced: "2025-10"
first-published: "2026-06"
---
# Context Architecture: bind a repository's claims to mechanisms
This skill applies **Context Architecture** to a repository: it makes the repo's intent and behavior
equally legible to people and AI agents, and binds every claim the repo makes about itself to a
mechanism that fails when that claim stops being true. It works from the first commit (a repo can be
born legible) and on a repo that grew without design (restructured in steps, never all at once). The
job is to take the repo as it is and make it legible and self-verifying, without a big-bang rewrite.
Context Architecture treats the repository itself (its file tree, boundaries, conventions, and
embedded context) as a designed artifact, not an accident of growth. Introduced by Sergio Azócar in
October 2025. Canonical specification: https://context-architecture.dev
## The one assumption
Design for a reader who **retains nothing between sessions and knows only what the repository says
out loud.** An AI agent meets this exactly; a new human contributor approximates it. Agents keep
memory now, but it is local, unverified, and unshared, so it is not the repository's truth; design as
if it were absent.
…