AgentSkillsCN

context-awareness

启用并运行上下文感知功能(docs/context合约 + 环境注册表),使大语言模型能够基于经验证的上下文层工作,而非依赖临时的仓库扫描。

SKILL.md
--- frontmatter
name: context-awareness
description: Enable and operate the Context Awareness feature (docs/context contracts + environment registry) so LLMs can work from a verified context layer instead of ad-hoc repo scans.

Context Awareness Feature

Intent

Provide a stable, verifiable, LLM-readable context layer under docs/context/.

This 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)
  • docs/context/AGENTS.md (LLM routing entrypoint with progressive loading protocol)
  • docs/context/glossary.json (domain glossary — structured term definitions)
  • docs/context/glossary.schema.json (glossary JSON Schema for verification)
  • docs/context/architecture-principles.md (cross-cutting constraints and rejected alternatives)
  • 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/ctl-context.mjs — context artifacts + registry + environments
  • node .ai/scripts/ctl-project-state.mjs — project state (.ai/project/state.json)
  • node .ai/skills/_meta/ctl-skill-packs.mjs — skill pack switching + wrapper sync

Canonical entry points for LLMs

  1. docs/context/AGENTS.md (authoritative LLM routing — progressive loading protocol)
  2. docs/context/INDEX.md
  3. docs/context/registry.json
  4. docs/context/api/api-index.json (API overview — read before openapi.yaml)
  5. docs/context/glossary.json (domain term definitions)
  6. 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 ctl-db-ssot, and the database workflow skills).

Knowledge artifacts

Domain glossary (docs/context/glossary.json)

Structured JSON for project-specific term definitions. Manage via CLI:

bash
node .ai/skills/features/context-awareness/scripts/ctl-context.mjs add-term --term "tenant" --definition "An isolated customer organization" --scope global --aliases "organization,org"
node .ai/skills/features/context-awareness/scripts/ctl-context.mjs remove-term --term "tenant"
node .ai/skills/features/context-awareness/scripts/ctl-context.mjs list-terms

Verification: ctl-context verify --strict validates glossary structure when the file exists.

Architecture principles (docs/context/architecture-principles.md)

Markdown file for cross-cutting rules. Edit directly, then run ctl-context touch.

How to enable

To enable in any repo:

  1. Copy templates from .ai/skills/features/context-awareness/templates/ into the repo root (merge / copy-if-missing).
  2. Initialize (idempotent):
bash
node .ai/scripts/ctl-project-state.mjs init
node .ai/scripts/ctl-project-state.mjs set features.contextAwareness true
node .ai/scripts/ctl-project-state.mjs set context.enabled true
node .ai/scripts/ctl-project-state.mjs set-context-mode <contract|snapshot>
node .ai/skills/features/context-awareness/scripts/ctl-context.mjs init
node .ai/skills/features/context-awareness/scripts/ctl-context.mjs touch

Operating rules

Managing project state

Use projectctl to maintain .ai/project/state.json:

bash
node .ai/scripts/ctl-project-state.mjs init
node .ai/scripts/ctl-project-state.mjs set custom.stage <prototype|mvp|production|maintenance|archived>
node .ai/scripts/ctl-project-state.mjs set-context-mode <contract|snapshot>
node .ai/scripts/ctl-project-state.mjs verify

Editing artifacts

After editing any file under docs/context/**:

bash
node .ai/skills/features/context-awareness/scripts/ctl-context.mjs touch

Managing environments

bash
node .ai/skills/features/context-awareness/scripts/ctl-context.mjs list-envs
node .ai/skills/features/context-awareness/scripts/ctl-context.mjs add-env --id qa --description "QA environment"
node .ai/skills/features/context-awareness/scripts/ctl-context.mjs verify-config

Verification

bash
node .ai/skills/features/context-awareness/scripts/ctl-context.mjs verify --strict
node .ai/scripts/ctl-project-state.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/ or config/.
  • Do NOT hand-edit generated context artifacts without re-running ctl-context touch.
  • Use DB SSOT workflows to update docs/context/db/schema.json.