chore(governance): consolidate roadmap and backup policies

This commit is contained in:
2026-06-23 18:00:34 +09:00
parent 357d2507da
commit f73a66818f
28 changed files with 381 additions and 76 deletions
+1
View File
@@ -8,5 +8,6 @@ rule_files:
- governance/rules/03_order_grammar.yaml
- governance/rules/04_reporting_contract.yaml
- governance/rules/05_migration_hashes.yaml
- governance/rules/08_database_file_management.yaml
hash_manifest: governance/agents_rule_hashes.yaml
hash_algorithm: sha256
+9 -7
View File
@@ -3,16 +3,18 @@ hash_algorithm: sha256
generated_from: governance/agents_index.yaml
files:
- path: governance/rules/00_core_locks.yaml
sha256: b3c3d7ce05beb9e8b0945d98a0a1a55276254acef246c13f8c3a110f14f57ff4
sha256: 6cbf75e6ac37f2ea4d37ab6e4b63e006a4c93ba224b46aa909ac94c5d4b4549f
- path: governance/rules/01_harness_contract.yaml
sha256: a093ddafa4a1b624ee44e4a98a63ce196ad452572fb27418c7e82b9b5edafc5a
sha256: c441639c8d65ae50170005be09c28e50efeaac5af1b0a775e1da79ea884154b9
- path: governance/rules/02_portfolio_policy.yaml
sha256: 47f6f33602482213523e6fdfa191309a34b805fc7acbe4aa84f475ece899a8ad
sha256: 2aa3be04449d06ff3f1762f69feb4097a3c90557d4104bb68571ce0a1894c146
- path: governance/rules/03_order_grammar.yaml
sha256: cbcde916be0929cb1ba7fdbe9922c4445e375ea5d39654d96b86e1e80313cca9
sha256: c8a4687592c3ca0616f6e12055dfa70319911163599a327ef073ee303c554687
- path: governance/rules/04_reporting_contract.yaml
sha256: 6ec102fcd3f8c50325ca793b8709200ec688526673405f594e5a03c137300f7b
sha256: 124d555ed1a0686a9b6cb102ce6c15e615b20228763f750fb9ab5c1d7a8157df
- path: governance/rules/05_migration_hashes.yaml
sha256: fed17361105a22161e974b9503a5908c8d332f66b19503a6d6a4d12ceabaef75
sha256: 0119b17db5fca22ff09e06669fe5a5a1aa92286a66bcb02fb29049483032fe2c
- path: governance/rules/08_database_file_management.yaml
sha256: a78405a467cfe875216800f65c83d389c328ceb8a16c8e3ca532a0c690c066dc
- path: AGENTS.md
sha256: bc87a211bccacd2f48d52cd7ef8cd0e0dfedbf5e867b15040cb3430381614be5
sha256: 844bec9925039e8d101d4cc10021e0e79834e1f572ebeebee3ba0feb0935d151
@@ -0,0 +1,11 @@
schema_version: agents_rule.v1
rule_id: DB_FILE_MANAGEMENT_V1
title: Database file management and canonical path policy
summary:
- Canonical operational database files live under `src/quant_engine/`.
- `src/quant_engine/snapshot_admin.db` is the canonical snapshot admin workspace DB.
- `src/quant_engine/kis_data_collection.db` is the canonical KIS collector DB.
- `Temp/` is reserved for transient validation artifacts, smoke DBs, and ephemeral test outputs.
- `outputs/` is reserved for export, archive, and derived artifacts; it must not become the default operational source of truth.
- If a DB path exists in multiple locations, code and docs must point to the canonical `src/quant_engine/` copy unless an explicit migration or archive tool states otherwise.
- Legacy DB paths may appear only in documented migration/archive helpers and must not be used by normal operational entry points.