Full optimization cycle: Protocol (15 files): - 4-layer SSOT architecture for agent prompts & skills - Anti-Corruption Protocol consolidated from 5 duplicates - Tag-to-tier permissiveness matrix (all @tags allowed at all tiers) Axiom config: - complexity_rules: all 22+ tags available on C1-C5 - contract_type_overrides: removed (was narrowing per-type) - 18 new tags added, LAYER enum expanded (Infra, Frontend, Atom, etc.) - RELATION predicates expanded (USES, CONTAINS, BELONGS_TO, etc.) Code fixes: - 2216 @TAG: normalized to @TAG (colon→space) - 518 [DEF] blocks migrated to #region/#endregion (37 files) - VERIFIES→BINDS_TO, :Class/:Function suffixes removed, paths→IDs - 1173-line _external_stubs.py deleted (EXT: handled natively) - Batch EXT: reference audit (240 targets: 132 external, 99 internal, 9 fix) - QA regression check: 0 regressions across all checks Infrastructure: - DuckDB rebuild stabilized (appender API, INSERT OR IGNORE) - Anchor regex fix (parent-child BINDS_TO now resolves) - EXT:*/DTO:/NEED_CONTEXT: regex fixed in validator - 34MB Doxygen API portal (3194 contract pages)
99 lines
1.1 KiB
Plaintext
Executable File
99 lines
1.1 KiB
Plaintext
Executable File
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
.Python
|
|
build/
|
|
develop-eggs/
|
|
dist/
|
|
downloads/
|
|
eggs/
|
|
.eggs/
|
|
parts/
|
|
sdist/
|
|
var/
|
|
wheels/
|
|
pip-wheel-metadata/
|
|
share/python-wheels/
|
|
*.egg-info/
|
|
.installed.cfg
|
|
*.egg
|
|
MANIFEST
|
|
.venv
|
|
venv/
|
|
ENV/
|
|
env/
|
|
backend/backups/*
|
|
|
|
# Node.js
|
|
frontend/node_modules/
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
.svelte-kit/
|
|
.vite/
|
|
build/
|
|
dist/
|
|
.env*
|
|
!.env.example
|
|
config.json
|
|
package-lock.json
|
|
|
|
# Logs
|
|
*.log
|
|
*.log.*
|
|
logs/
|
|
backend/logs/
|
|
backend/backend.log
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
|
|
# Project specific
|
|
*.ps1
|
|
keyring passwords.py
|
|
*github*
|
|
*tech_spec*
|
|
/dashboards
|
|
dashboards_example/**/dashboards/
|
|
backend/mappings.db
|
|
backend/tasks.db
|
|
backend/auth.db
|
|
semantics/reports
|
|
backend/**/*.db
|
|
backend/**/*.sqlite
|
|
|
|
# Universal / tooling
|
|
node_modules/
|
|
.venv/
|
|
coverage/
|
|
*.tmp
|
|
audit_report.txt
|
|
check_semantics.py
|
|
docs_audit_report.txt
|
|
run_mcp.py
|
|
semantic_audit_report.md
|
|
.axiom/checkpoints
|
|
.axiom/runtime/
|
|
|
|
# Semantic index binaries (regenerated on each rebuild)
|
|
.axiom/semantic_index/*.duckdb
|
|
**/.axiom/semantic_index/*.duckdb
|
|
|
|
# Pytest temp artifacts
|
|
.axiom/temp/
|
|
|
|
# E2E screenshots
|
|
e2e_*.png
|
|
|
|
#generated doxygen
|
|
docs/api/html
|