

Language: English | 日本語 | 简体中文
A docs and runtime kit for workflow operations and context engineering.
Integrates Birdseye/Codemap, Task Seeds, acceptance operations, reusable CI, and Evidence tracking.
| Feature |
Description |
| Birdseye / Codemap |
Auto-sync Markdown hubs and dependencies |
| Task Seed |
Task definition templates and operational workflows |
| Acceptance |
Acceptance records and quality gates |
| CI / Governance |
Reusable workflows and policy validation |
| Evidence |
LLM behavior tracking and agent-protocols integration |
| Plugins |
Cross-repo integration and docs resolve |
Recommended read order:
docs/birdseye/index.json — Node graph (lightweight)
docs/birdseye/caps/<path>.json — Point reads for needed nodes
Focus procedure:
- Find node IDs for recently changed files within +/-2 hops from
index.json
- Read only the matching
caps/*.json files
# 1. Update Birdseye
python tools/codemap/update.py --since --emit index+caps
# 2. Run tests
uv run pytest tests/ -q
# 3. Validate CI gates
python tools/ci/check_ci_gate_matrix.py
# 4. Check Birdseye freshness
python tools/ci/check_birdseye_freshness.py --check
Windows users: The python command may invoke the Windows Store stub.
Use py -3 or uv run python instead of python in the examples above.
# Full update
python tools/codemap/update.py --targets docs/birdseye/index.json,docs/birdseye/hot.json --emit index+caps
# Local update (radius 1)
python tools/codemap/update.py --since --radius 1 --emit caps
# Freshness check
python tools/ci/check_birdseye_freshness.py --check --max-verified-age-days 90
# Freshness remediation suggestions
python tools/ci/check_birdseye_freshness.py --check --remediation-output .ga/birdseye-remediation.json
# CI phase rollout doctor
python tools/ci/check_ci_phase_doctor.py --json
# QA metrics collection
python -m tools.perf.collect_metrics --suite qa --metrics-url <url> --log-path <path>
# Threshold validation
python tools/ci/check_metrics_thresholds.py --check --metrics-json .ga/qa-metrics.json
# Regression check against previous-good metrics
python tools/ci/check_metrics_thresholds.py --check --metrics-json .ga/qa-metrics.json --baseline-json .ga/qa-metrics.previous.json
# Acceptance record validation
python tools/ci/check_acceptance.py --check
# Task/Acceptance sync check
python tools/ci/check_task_acceptance_sync.py --plugin-config examples/workflow_plugins.cross_repo.sample.json
# Strict mode: fail when done tasks do not have acceptance records
python tools/ci/check_task_acceptance_sync.py --plugin-config examples/workflow_plugins.cross_repo.sample.json --require-acceptance-for-done
# Generate acceptance index
python tools/ci/generate_acceptance_index.py --plugin-config examples/workflow_plugins.cross_repo.sample.json
# Security posture check
python tools/ci/check_security_posture.py --check --github-repo owner/name
# Security posture snapshot and diff
python tools/ci/check_security_posture.py --export-json .ga/security-posture.json
python tools/ci/check_security_posture.py --baseline-json .ga/security-posture.previous.json --json
# Release evidence check
python tools/ci/check_release_evidence.py --check --github-repo owner/name
# Branch protection validation
python tools/ci/check_branch_protection.py --protection-json <json>
# Branch protection weekly audit artifacts
python tools/ci/check_branch_protection.py --protection-json <json> --report-output .ga/branch-protection-weekly.json --nudge-output .ga/branch-protection-nudge.json
# Security docs freshness check
python tools/ci/check_security_docs_freshness.py --check
# Sample/docs sync check
python tools/ci/check_sample_docs_sync.py --check
# Schema/sample/docs matrix check
python tools/ci/check_sample_docs_sync.py --matrix-check --json
# Docs review automation
python tools/ci/check_docs_review_due.py --owner-summary-json .ga/docs-review-owner-summary.json --nudge-output .ga/docs-review-nudges.json
# Generate evidence report
python tools/ci/generate_evidence_report.py --output docs/evidence_report.md
# Generate release readiness report
python tools/ci/generate_evidence_report.py --security-json .ga/security-posture.json --metrics-json .ga/qa-metrics.json --output docs/release_readiness.md
# Generate acceptance index
python tools/ci/generate_acceptance_index_standalone.py --output docs/acceptance_index.md
# Extract upstream changes
python tools/ci/extract_upstream_changes.py --upstream-md docs/UPSTREAM.md --weekly-log docs/WEEKLY.md
# Export task state
python tools/ci/export_task_state.py --output task_state.json
# Assess downstream adoption tier
python tools/ci/check_adoption_tier.py --repo ../agent-taskstate --json
# Assess downstream onboarding readiness
python tools/ci/check_downstream_onboarding.py --repo ../agent-taskstate --json
# Adaptive improvement utilities
python tools/ci/self_improvement_ops.py export-memory --output .ga/curated-memory.json
python tools/ci/self_improvement_ops.py build-recall --query "release readiness" --output .ga/recall-response.json
# Five-tool validation manifest
python tools/ci/five_tool_manifest.py generate --config examples/five-tool-chain-manifest.sample.json --out docs/evidence/five-tool-validation-20260703/five-tool-run-manifest.json --validate
python tools/ci/five_tool_manifest.py validate --manifest docs/evidence/five-tool-validation-20260703/five-tool-run-manifest.json --json
Reusable workflows:
# Config sample
examples/inference_plugins.agent_protocol.sample.json
# Consumer sample
examples/agent_protocol_evidence_consumer.sample.py
# Details
tools/protocols/README.md
# Config sample
examples/workflow_plugins.cross_repo.sample.json
# Schema
schemas/workflow-plugin-config.schema.json
# Validation
python tools/workflow_plugins/validate_workflow_plugin_config.py --config examples/workflow_plugins.cross_repo.sample.json
MIT. Unless noted otherwise, files copied from this repo into other projects
remain under the MIT License.