mirror of
https://github.com/x1xhlol/system-prompts-and-models-of-ai-tools.git
synced 2026-06-18 07:19:35 +00:00
38 lines
1.3 KiB
JSON
38 lines
1.3 KiB
JSON
{
|
|
"theme": "dark",
|
|
"projectInstructions": "Follow Dealix OS Sovereign architecture. Agentic by design, governed by policy, proven by evidence. No Action without Evidence Pack. Enforce Separation of Decision and Execution.",
|
|
"customCommands": [
|
|
{
|
|
"name": "architecture-map",
|
|
"description": "Generates a comprehensive layout of the core OS structure including decision/execution planes.",
|
|
"command": "python scripts/repo_mapper.py"
|
|
},
|
|
{
|
|
"name": "canary-check",
|
|
"description": "Runs local security, format, and unit tests before promotion.",
|
|
"command": "pytest tests/ --cov"
|
|
},
|
|
{
|
|
"name": "security-preflight",
|
|
"description": "White-box security stage and audit verification mapping (Shannon style).",
|
|
"command": "python scripts/security_gate.py"
|
|
}
|
|
],
|
|
"hooks": {
|
|
"PreToolUse": [
|
|
{
|
|
"pattern": "git push .*",
|
|
"command": "pytest tests/ && python scripts/audit_changelog.py",
|
|
"description": "Prevent code pushing without verification ledger proof and policy compliance checks."
|
|
}
|
|
],
|
|
"PostToolUse": [
|
|
{
|
|
"pattern": "write_to_file",
|
|
"command": "python scripts/validate_universal_contract.py",
|
|
"description": "Check if agent scripts adhere to Decision Memo structured outputs."
|
|
}
|
|
]
|
|
}
|
|
}
|