Context Awareness Feature
Intent
Provide a stable, verifiable, LLM-readable context layer under docs/context/.
The context-awareness feature standardizes how the project exposes:
- •API contracts (OpenAPI)
- •Database schema contract (LLM-readable JSON)
- •Process contracts (BPMN)
- •Environment registry (what exists; policies; no secrets)
The main outcome is that the LLM can load a small number of canonical entry points and avoid fragile whole-repo discovery.
What gets enabled
When enabled, the feature materializes these paths in the repo root:
- •
docs/context/**(contracts + registry) - •
config/environments/**(environment config templates; no secrets)
And it assumes these controller scripts exist (they are part of the template SSOT under .ai/):
- •
node .ai/skills/features/context-awareness/scripts/contextctl.mjs— context artifacts + registry + environments - •
node .ai/scripts/projectctl.mjs— project state (.ai/project/state.json) - •
node .ai/skills/_meta/skillpacksctl.mjs— skill pack switching + wrapper sync
Canonical entry points for LLMs
- •
docs/context/INDEX.md - •
docs/context/registry.json - •
docs/context/config/environment-registry.json
If a DB schema exists, the canonical DB contract is:
- •
docs/context/db/schema.json
That DB contract is produced by the DB SSOT workflow (see dbssotctl, and the database workflow skills).
How to enable
- •Copy templates from:
- •
.ai/skills/features/context-awareness/templates/into the repo root.
- •
- •Initialize:
node .ai/scripts/projectctl.mjs init node .ai/scripts/projectctl.mjs set context.enabled true node .ai/scripts/projectctl.mjs set-context-mode contract node .ai/skills/features/context-awareness/scripts/contextctl.mjs init node .ai/skills/features/context-awareness/scripts/contextctl.mjs touch
Operating rules
Managing project state
Use projectctl to maintain .ai/project/state.json:
node .ai/scripts/projectctl.mjs init node .ai/scripts/projectctl.mjs set custom.stage <prototype|mvp|production|maintenance|archived> node .ai/scripts/projectctl.mjs set-context-mode <contract|snapshot> node .ai/scripts/projectctl.mjs verify
Editing artifacts
After editing any file under docs/context/**:
node .ai/skills/features/context-awareness/scripts/contextctl.mjs touch
Managing environments
node .ai/skills/features/context-awareness/scripts/contextctl.mjs list-envs node .ai/skills/features/context-awareness/scripts/contextctl.mjs add-env --id qa --description "QA environment" node .ai/skills/features/context-awareness/scripts/contextctl.mjs verify-config
Module slice workflow (DB / Env / Observability)
For module-level context slices, follow the standard workflow below:
Step 1 — Ensure repo contracts exist
- •DB contract:
docs/context/db/schema.json - •Env contract:
env/contract.yaml - •Observability contracts:
docs/context/observability/*.json
Step 2 — Declare module boundaries in MANIFEST.yaml
# modules/<module_id>/MANIFEST.yaml
db:
owns:
- table: users
uses:
- table: orders
env:
owns:
- SERVICE_API_KEY
requires:
- LOG_LEVEL
observability:
metrics:
owns:
- http_requests_total
uses:
- auth_login_total
logs:
owns:
- billing_account_id
requires:
- trace_id
Step 3 — Validate and sync slices
# DB slices node .ai/scripts/modules/dbssotctl-module.mjs verify --strict node .ai/scripts/modules/dbssotctl-module.mjs conflicts node .ai/scripts/modules/dbssotctl-module.mjs sync-slices --module-id <module_id> # Env slices node .ai/scripts/modules/env-contractctl-module.mjs verify --strict node .ai/scripts/modules/env-contractctl-module.mjs conflicts node .ai/scripts/modules/env-contractctl-module.mjs sync-slices --module-id <module_id> # Observability slices node .ai/scripts/modules/obsctl-module.mjs verify --strict node .ai/scripts/modules/obsctl-module.mjs conflicts node .ai/scripts/modules/obsctl-module.mjs sync-slices --module-id <module_id>
Step 4 — Rebuild aggregated context
node .ai/skills/features/context-awareness/scripts/contextctl.mjs build node .ai/skills/features/context-awareness/scripts/contextctl.mjs verify --strict
Related skills
- •
manage-db-module-slices - •
manage-env-module-slices - •
manage-observability-module-slices
Verification
node .ai/skills/features/context-awareness/scripts/contextctl.mjs verify --strict node .ai/scripts/projectctl.mjs verify
References
- •
reference/feature-overview.md - •
reference/feature-mechanism.md - •
reference/operating-guide.md - •
reference/project-state-guide.md
Boundaries
- •Do NOT store credentials or secrets in
docs/context/orconfig/. - •Do NOT hand-edit generated context artifacts without re-running
contextctl touch. - •Use DB SSOT workflows to update
docs/context/db/schema.json.