tribunal-kit 4.0.1 → 4.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.agent/ARCHITECTURE.md +21 -14
- package/.agent/GEMINI.md +4 -2
- package/.agent/agents/api-architect.md +66 -0
- package/.agent/agents/db-latency-auditor.md +216 -0
- package/.agent/agents/precedence-reviewer.md +41 -4
- package/.agent/agents/resilience-reviewer.md +88 -0
- package/.agent/agents/schema-reviewer.md +67 -0
- package/.agent/agents/swarm-worker-contracts.md +5 -5
- package/.agent/agents/throughput-optimizer.md +299 -0
- package/.agent/agents/ui-ux-auditor.md +292 -0
- package/.agent/agents/vitals-reviewer.md +223 -0
- package/.agent/history/case-law/cases/case-0001.json +33 -0
- package/.agent/history/case-law/index.json +35 -0
- package/.agent/rules/GEMINI.md +28 -11
- package/.agent/scripts/__pycache__/_colors.cpython-311.pyc +0 -0
- package/.agent/scripts/__pycache__/_utils.cpython-311.pyc +0 -0
- package/.agent/scripts/__pycache__/case_law_manager.cpython-311.pyc +0 -0
- package/.agent/scripts/_colors.js +18 -0
- package/.agent/scripts/_utils.js +42 -0
- package/.agent/scripts/auto_preview.js +197 -0
- package/.agent/scripts/bundle_analyzer.js +290 -0
- package/.agent/scripts/case_law_manager.js +684 -0
- package/.agent/scripts/checklist.js +266 -0
- package/.agent/scripts/colors.js +17 -0
- package/.agent/scripts/compress_skills.js +141 -0
- package/.agent/scripts/consolidate_skills.js +149 -0
- package/.agent/scripts/context_broker.js +609 -0
- package/.agent/scripts/deep_compress.js +150 -0
- package/.agent/scripts/dependency_analyzer.js +272 -0
- package/.agent/scripts/inner_loop_validator.js +465 -0
- package/.agent/scripts/lint_runner.js +187 -0
- package/.agent/scripts/minify_context.js +100 -0
- package/.agent/scripts/patch_skills_meta.js +156 -0
- package/.agent/scripts/patch_skills_output.js +244 -0
- package/.agent/scripts/schema_validator.js +297 -0
- package/.agent/scripts/security_scan.js +303 -0
- package/.agent/scripts/session_manager.js +276 -0
- package/.agent/scripts/skill_evolution.js +644 -0
- package/.agent/scripts/skill_integrator.js +313 -0
- package/.agent/scripts/strengthen_skills.js +193 -0
- package/.agent/scripts/strip_tribunal.js +47 -0
- package/.agent/scripts/swarm_dispatcher.js +360 -0
- package/.agent/scripts/test_runner.js +193 -0
- package/.agent/scripts/utils.js +32 -0
- package/.agent/scripts/verify_all.js +256 -0
- package/.agent/skills/agent-organizer/SKILL.md +42 -0
- package/.agent/skills/agentic-patterns/SKILL.md +42 -0
- package/.agent/skills/ai-prompt-injection-defense/SKILL.md +42 -0
- package/.agent/skills/api-patterns/SKILL.md +42 -0
- package/.agent/skills/api-security-auditor/SKILL.md +42 -0
- package/.agent/skills/app-builder/SKILL.md +42 -0
- package/.agent/skills/app-builder/templates/SKILL.md +70 -0
- package/.agent/skills/app-builder/templates/astro-static/TEMPLATE.md +1 -1
- package/.agent/skills/app-builder/templates/chrome-extension/TEMPLATE.md +1 -1
- package/.agent/skills/app-builder/templates/cli-tool/TEMPLATE.md +1 -1
- package/.agent/skills/app-builder/templates/electron-desktop/TEMPLATE.md +1 -1
- package/.agent/skills/app-builder/templates/express-api/TEMPLATE.md +1 -1
- package/.agent/skills/app-builder/templates/flutter-app/TEMPLATE.md +1 -1
- package/.agent/skills/app-builder/templates/monorepo-turborepo/TEMPLATE.md +1 -1
- package/.agent/skills/app-builder/templates/nextjs-fullstack/TEMPLATE.md +1 -1
- package/.agent/skills/app-builder/templates/nextjs-saas/TEMPLATE.md +1 -1
- package/.agent/skills/app-builder/templates/nextjs-static/TEMPLATE.md +1 -1
- package/.agent/skills/app-builder/templates/nuxt-app/TEMPLATE.md +1 -1
- package/.agent/skills/app-builder/templates/python-fastapi/TEMPLATE.md +1 -1
- package/.agent/skills/app-builder/templates/react-native-app/TEMPLATE.md +1 -1
- package/.agent/skills/appflow-wireframe/SKILL.md +42 -0
- package/.agent/skills/architecture/SKILL.md +42 -0
- package/.agent/skills/authentication-best-practices/SKILL.md +42 -0
- package/.agent/skills/bash-linux/SKILL.md +42 -0
- package/.agent/skills/behavioral-modes/SKILL.md +42 -0
- package/.agent/skills/brainstorming/SKILL.md +42 -0
- package/.agent/skills/building-native-ui/SKILL.md +42 -0
- package/.agent/skills/clean-code/SKILL.md +42 -0
- package/.agent/skills/code-review-checklist/SKILL.md +42 -0
- package/.agent/skills/config-validator/SKILL.md +42 -0
- package/.agent/skills/csharp-developer/SKILL.md +42 -0
- package/.agent/skills/data-validation-schemas/SKILL.md +320 -0
- package/.agent/skills/database-design/SKILL.md +42 -0
- package/.agent/skills/deployment-procedures/SKILL.md +42 -0
- package/.agent/skills/devops-engineer/SKILL.md +42 -0
- package/.agent/skills/devops-incident-responder/SKILL.md +42 -0
- package/.agent/skills/doc.md +1 -1
- package/.agent/skills/documentation-templates/SKILL.md +42 -0
- package/.agent/skills/edge-computing/SKILL.md +42 -0
- package/.agent/skills/error-resilience/SKILL.md +420 -0
- package/.agent/skills/extract-design-system/SKILL.md +42 -0
- package/.agent/skills/framer-motion-expert/SKILL.md +42 -1
- package/.agent/skills/frontend-design/SKILL.md +42 -0
- package/.agent/skills/game-design-expert/SKILL.md +42 -0
- package/.agent/skills/game-engineering-expert/SKILL.md +42 -0
- package/.agent/skills/geo-fundamentals/SKILL.md +42 -0
- package/.agent/skills/github-operations/SKILL.md +42 -0
- package/.agent/skills/gsap-core/SKILL.md +300 -0
- package/.agent/skills/gsap-frameworks/SKILL.md +199 -0
- package/.agent/skills/gsap-performance/SKILL.md +125 -0
- package/.agent/skills/gsap-plugins/SKILL.md +472 -0
- package/.agent/skills/gsap-react/SKILL.md +181 -0
- package/.agent/skills/gsap-scrolltrigger/SKILL.md +342 -0
- package/.agent/skills/gsap-timeline/SKILL.md +153 -0
- package/.agent/skills/gsap-utils/SKILL.md +330 -0
- package/.agent/skills/i18n-localization/SKILL.md +42 -0
- package/.agent/skills/intelligent-routing/SKILL.md +72 -1
- package/.agent/skills/lint-and-validate/SKILL.md +42 -0
- package/.agent/skills/llm-engineering/SKILL.md +42 -0
- package/.agent/skills/local-first/SKILL.md +42 -0
- package/.agent/skills/mcp-builder/SKILL.md +42 -0
- package/.agent/skills/mobile-design/SKILL.md +42 -0
- package/.agent/skills/monorepo-management/SKILL.md +326 -0
- package/.agent/skills/motion-engineering/SKILL.md +42 -0
- package/.agent/skills/nextjs-react-expert/SKILL.md +42 -0
- package/.agent/skills/nodejs-best-practices/SKILL.md +42 -0
- package/.agent/skills/observability/SKILL.md +42 -0
- package/.agent/skills/parallel-agents/SKILL.md +42 -0
- package/.agent/skills/performance-profiling/SKILL.md +42 -0
- package/.agent/skills/plan-writing/SKILL.md +42 -0
- package/.agent/skills/platform-engineer/SKILL.md +42 -0
- package/.agent/skills/playwright-best-practices/SKILL.md +42 -0
- package/.agent/skills/powershell-windows/SKILL.md +42 -0
- package/.agent/skills/project-idioms/SKILL.md +42 -0
- package/.agent/skills/python-patterns/SKILL.md +42 -0
- package/.agent/skills/python-pro/SKILL.md +42 -0
- package/.agent/skills/react-specialist/SKILL.md +42 -0
- package/.agent/skills/readme-builder/SKILL.md +42 -0
- package/.agent/skills/realtime-patterns/SKILL.md +42 -0
- package/.agent/skills/red-team-tactics/SKILL.md +42 -0
- package/.agent/skills/rust-pro/SKILL.md +42 -0
- package/.agent/skills/seo-fundamentals/SKILL.md +42 -0
- package/.agent/skills/server-management/SKILL.md +42 -0
- package/.agent/skills/shadcn-ui-expert/SKILL.md +42 -0
- package/.agent/skills/skill-creator/SKILL.md +42 -0
- package/.agent/skills/sql-pro/SKILL.md +42 -0
- package/.agent/skills/supabase-postgres-best-practices/SKILL.md +42 -0
- package/.agent/skills/swiftui-expert/SKILL.md +42 -0
- package/.agent/skills/systematic-debugging/SKILL.md +42 -0
- package/.agent/skills/tailwind-patterns/SKILL.md +42 -0
- package/.agent/skills/tdd-workflow/SKILL.md +42 -0
- package/.agent/skills/test-result-analyzer/SKILL.md +42 -0
- package/.agent/skills/testing-patterns/SKILL.md +42 -0
- package/.agent/skills/trend-researcher/SKILL.md +42 -0
- package/.agent/skills/typescript-advanced/SKILL.md +327 -0
- package/.agent/skills/ui-ux-pro-max/SKILL.md +42 -0
- package/.agent/skills/ui-ux-researcher/SKILL.md +42 -0
- package/.agent/skills/vue-expert/SKILL.md +42 -0
- package/.agent/skills/vulnerability-scanner/SKILL.md +42 -0
- package/.agent/skills/web-accessibility-auditor/SKILL.md +42 -0
- package/.agent/skills/web-design-guidelines/SKILL.md +42 -0
- package/.agent/skills/webapp-testing/SKILL.md +42 -0
- package/.agent/skills/whimsy-injector/SKILL.md +42 -0
- package/.agent/skills/workflow-optimizer/SKILL.md +42 -0
- package/.agent/workflows/audit.md +6 -6
- package/.agent/workflows/deploy.md +1 -1
- package/.agent/workflows/generate.md +23 -6
- package/.agent/workflows/session.md +5 -5
- package/.agent/workflows/swarm.md +2 -2
- package/.agent/workflows/tribunal-backend.md +13 -2
- package/.agent/workflows/tribunal-full.md +15 -8
- package/.agent/workflows/tribunal-speed.md +183 -0
- package/README.md +64 -8
- package/bin/tribunal-kit.js +281 -41
- package/package.json +9 -6
- package/scripts/changelog.js +167 -0
- package/scripts/sync-version.js +81 -0
- package/.agent/scripts/__pycache__/auto_preview.cpython-311.pyc +0 -0
- package/.agent/scripts/__pycache__/bundle_analyzer.cpython-311.pyc +0 -0
- package/.agent/scripts/__pycache__/checklist.cpython-311.pyc +0 -0
- package/.agent/scripts/__pycache__/dependency_analyzer.cpython-311.pyc +0 -0
- package/.agent/scripts/__pycache__/security_scan.cpython-311.pyc +0 -0
- package/.agent/scripts/__pycache__/session_manager.cpython-311.pyc +0 -0
- package/.agent/scripts/__pycache__/skill_integrator.cpython-311.pyc +0 -0
- package/.agent/scripts/__pycache__/swarm_dispatcher.cpython-311.pyc +0 -0
- package/.agent/scripts/__pycache__/test_runner.cpython-311.pyc +0 -0
- package/.agent/scripts/__pycache__/verify_all.cpython-311.pyc +0 -0
- package/.agent/scripts/auto_preview.py +0 -180
- package/.agent/scripts/bundle_analyzer.py +0 -259
- package/.agent/scripts/case_law_manager.py +0 -525
- package/.agent/scripts/checklist.py +0 -209
- package/.agent/scripts/compress_skills.py +0 -167
- package/.agent/scripts/consolidate_skills.py +0 -173
- package/.agent/scripts/deep_compress.py +0 -202
- package/.agent/scripts/dependency_analyzer.py +0 -247
- package/.agent/scripts/lint_runner.py +0 -188
- package/.agent/scripts/minify_context.py +0 -80
- package/.agent/scripts/patch_skills_meta.py +0 -177
- package/.agent/scripts/patch_skills_output.py +0 -285
- package/.agent/scripts/schema_validator.py +0 -279
- package/.agent/scripts/security_scan.py +0 -224
- package/.agent/scripts/session_manager.py +0 -261
- package/.agent/scripts/skill_evolution.py +0 -563
- package/.agent/scripts/skill_integrator.py +0 -234
- package/.agent/scripts/strengthen_skills.py +0 -220
- package/.agent/scripts/strip_tribunal.py +0 -41
- package/.agent/scripts/swarm_dispatcher.py +0 -350
- package/.agent/scripts/test_runner.py +0 -192
- package/.agent/scripts/test_swarm_dispatcher.py +0 -163
- package/.agent/scripts/verify_all.py +0 -195
- package/.agent/skills/gsap-expert/SKILL.md +0 -194
|
@@ -90,3 +90,45 @@ Unlike the high-level `implementation_plan.md`, the `task.md` serves as the live
|
|
|
90
90
|
- `[x]` = Verified Complete
|
|
91
91
|
|
|
92
92
|
---
|
|
93
|
+
|
|
94
|
+
|
|
95
|
+
---
|
|
96
|
+
|
|
97
|
+
|
|
98
|
+
|
|
99
|
+
AI coding assistants often fall into specific bad habits when dealing with this domain. These are strictly forbidden:
|
|
100
|
+
|
|
101
|
+
1. **Over-engineering:** Proposing complex abstractions or distributed systems when a simpler approach suffices.
|
|
102
|
+
2. **Hallucinated Libraries/Methods:** Using non-existent methods or packages. Always `// VERIFY` or check `package.json` / `requirements.txt`.
|
|
103
|
+
3. **Skipping Edge Cases:** Writing the "happy path" and ignoring error handling, timeouts, or data validation.
|
|
104
|
+
4. **Context Amnesia:** Forgetting the user's constraints and offering generic advice instead of tailored solutions.
|
|
105
|
+
5. **Silent Degradation:** Catching and suppressing errors without logging or re-raising.
|
|
106
|
+
|
|
107
|
+
---
|
|
108
|
+
|
|
109
|
+
|
|
110
|
+
|
|
111
|
+
**Slash command: `/review` or `/tribunal-full`**
|
|
112
|
+
**Active reviewers: `logic-reviewer` · `security-auditor`**
|
|
113
|
+
|
|
114
|
+
### ❌ Forbidden AI Tropes
|
|
115
|
+
|
|
116
|
+
1. **Blind Assumptions:** Never make an assumption without documenting it clearly with `// VERIFY: [reason]`.
|
|
117
|
+
2. **Silent Degradation:** Catching and suppressing errors without logging or handling.
|
|
118
|
+
3. **Context Amnesia:** Forgetting the user's constraints and offering generic advice instead of tailored solutions.
|
|
119
|
+
|
|
120
|
+
|
|
121
|
+
|
|
122
|
+
Review these questions before confirming output:
|
|
123
|
+
```
|
|
124
|
+
✅ Did I rely ONLY on real, verified tools and methods?
|
|
125
|
+
✅ Is this solution appropriately scoped to the user's constraints?
|
|
126
|
+
✅ Did I handle potential failure modes and edge cases?
|
|
127
|
+
✅ Have I avoided generic boilerplate that doesn't add value?
|
|
128
|
+
```
|
|
129
|
+
|
|
130
|
+
### 🛑 Verification-Before-Completion (VBC) Protocol
|
|
131
|
+
|
|
132
|
+
**CRITICAL:** You must follow a strict "evidence-based closeout" state machine.
|
|
133
|
+
- ❌ **Forbidden:** Declaring a task complete because the output "looks correct."
|
|
134
|
+
- ✅ **Required:** You are explicitly forbidden from finalizing any task without providing **concrete evidence** (terminal output, passing tests, compile success, or equivalent proof) that your output works as intended.
|
|
@@ -95,3 +95,45 @@ Platform Engineering hides the Kubernetes complexity behind a portal (e.g., Back
|
|
|
95
95
|
Ensure your infrastructure proposals abstract away the YAML mechanics. Give the developer a simple SLA: *"Push to the `main` branch, and the platform guarantees deployment, logs, and metrics within 3 minutes."*
|
|
96
96
|
|
|
97
97
|
---
|
|
98
|
+
|
|
99
|
+
|
|
100
|
+
---
|
|
101
|
+
|
|
102
|
+
|
|
103
|
+
|
|
104
|
+
AI coding assistants often fall into specific bad habits when dealing with this domain. These are strictly forbidden:
|
|
105
|
+
|
|
106
|
+
1. **Over-engineering:** Proposing complex abstractions or distributed systems when a simpler approach suffices.
|
|
107
|
+
2. **Hallucinated Libraries/Methods:** Using non-existent methods or packages. Always `// VERIFY` or check `package.json` / `requirements.txt`.
|
|
108
|
+
3. **Skipping Edge Cases:** Writing the "happy path" and ignoring error handling, timeouts, or data validation.
|
|
109
|
+
4. **Context Amnesia:** Forgetting the user's constraints and offering generic advice instead of tailored solutions.
|
|
110
|
+
5. **Silent Degradation:** Catching and suppressing errors without logging or re-raising.
|
|
111
|
+
|
|
112
|
+
---
|
|
113
|
+
|
|
114
|
+
|
|
115
|
+
|
|
116
|
+
**Slash command: `/review` or `/tribunal-full`**
|
|
117
|
+
**Active reviewers: `logic-reviewer` · `security-auditor`**
|
|
118
|
+
|
|
119
|
+
### ❌ Forbidden AI Tropes
|
|
120
|
+
|
|
121
|
+
1. **Blind Assumptions:** Never make an assumption without documenting it clearly with `// VERIFY: [reason]`.
|
|
122
|
+
2. **Silent Degradation:** Catching and suppressing errors without logging or handling.
|
|
123
|
+
3. **Context Amnesia:** Forgetting the user's constraints and offering generic advice instead of tailored solutions.
|
|
124
|
+
|
|
125
|
+
|
|
126
|
+
|
|
127
|
+
Review these questions before confirming output:
|
|
128
|
+
```
|
|
129
|
+
✅ Did I rely ONLY on real, verified tools and methods?
|
|
130
|
+
✅ Is this solution appropriately scoped to the user's constraints?
|
|
131
|
+
✅ Did I handle potential failure modes and edge cases?
|
|
132
|
+
✅ Have I avoided generic boilerplate that doesn't add value?
|
|
133
|
+
```
|
|
134
|
+
|
|
135
|
+
### 🛑 Verification-Before-Completion (VBC) Protocol
|
|
136
|
+
|
|
137
|
+
**CRITICAL:** You must follow a strict "evidence-based closeout" state machine.
|
|
138
|
+
- ❌ **Forbidden:** Declaring a task complete because the output "looks correct."
|
|
139
|
+
- ✅ **Required:** You are explicitly forbidden from finalizing any task without providing **concrete evidence** (terminal output, passing tests, compile success, or equivalent proof) that your output works as intended.
|
|
@@ -135,3 +135,45 @@ export default defineConfig({
|
|
|
135
135
|
```
|
|
136
136
|
|
|
137
137
|
---
|
|
138
|
+
|
|
139
|
+
|
|
140
|
+
---
|
|
141
|
+
|
|
142
|
+
|
|
143
|
+
|
|
144
|
+
AI coding assistants often fall into specific bad habits when dealing with this domain. These are strictly forbidden:
|
|
145
|
+
|
|
146
|
+
1. **Over-engineering:** Proposing complex abstractions or distributed systems when a simpler approach suffices.
|
|
147
|
+
2. **Hallucinated Libraries/Methods:** Using non-existent methods or packages. Always `// VERIFY` or check `package.json` / `requirements.txt`.
|
|
148
|
+
3. **Skipping Edge Cases:** Writing the "happy path" and ignoring error handling, timeouts, or data validation.
|
|
149
|
+
4. **Context Amnesia:** Forgetting the user's constraints and offering generic advice instead of tailored solutions.
|
|
150
|
+
5. **Silent Degradation:** Catching and suppressing errors without logging or re-raising.
|
|
151
|
+
|
|
152
|
+
---
|
|
153
|
+
|
|
154
|
+
|
|
155
|
+
|
|
156
|
+
**Slash command: `/review` or `/tribunal-full`**
|
|
157
|
+
**Active reviewers: `logic-reviewer` · `security-auditor`**
|
|
158
|
+
|
|
159
|
+
### ❌ Forbidden AI Tropes
|
|
160
|
+
|
|
161
|
+
1. **Blind Assumptions:** Never make an assumption without documenting it clearly with `// VERIFY: [reason]`.
|
|
162
|
+
2. **Silent Degradation:** Catching and suppressing errors without logging or handling.
|
|
163
|
+
3. **Context Amnesia:** Forgetting the user's constraints and offering generic advice instead of tailored solutions.
|
|
164
|
+
|
|
165
|
+
|
|
166
|
+
|
|
167
|
+
Review these questions before confirming output:
|
|
168
|
+
```
|
|
169
|
+
✅ Did I rely ONLY on real, verified tools and methods?
|
|
170
|
+
✅ Is this solution appropriately scoped to the user's constraints?
|
|
171
|
+
✅ Did I handle potential failure modes and edge cases?
|
|
172
|
+
✅ Have I avoided generic boilerplate that doesn't add value?
|
|
173
|
+
```
|
|
174
|
+
|
|
175
|
+
### 🛑 Verification-Before-Completion (VBC) Protocol
|
|
176
|
+
|
|
177
|
+
**CRITICAL:** You must follow a strict "evidence-based closeout" state machine.
|
|
178
|
+
- ❌ **Forbidden:** Declaring a task complete because the output "looks correct."
|
|
179
|
+
- ✅ **Required:** You are explicitly forbidden from finalizing any task without providing **concrete evidence** (terminal output, passing tests, compile success, or equivalent proof) that your output works as intended.
|
|
@@ -110,3 +110,45 @@ Get-ChildItem -Path "Cert:\LocalMachine\My" | Where-Object Subject -match "examp
|
|
|
110
110
|
```
|
|
111
111
|
|
|
112
112
|
---
|
|
113
|
+
|
|
114
|
+
|
|
115
|
+
---
|
|
116
|
+
|
|
117
|
+
|
|
118
|
+
|
|
119
|
+
AI coding assistants often fall into specific bad habits when dealing with this domain. These are strictly forbidden:
|
|
120
|
+
|
|
121
|
+
1. **Over-engineering:** Proposing complex abstractions or distributed systems when a simpler approach suffices.
|
|
122
|
+
2. **Hallucinated Libraries/Methods:** Using non-existent methods or packages. Always `// VERIFY` or check `package.json` / `requirements.txt`.
|
|
123
|
+
3. **Skipping Edge Cases:** Writing the "happy path" and ignoring error handling, timeouts, or data validation.
|
|
124
|
+
4. **Context Amnesia:** Forgetting the user's constraints and offering generic advice instead of tailored solutions.
|
|
125
|
+
5. **Silent Degradation:** Catching and suppressing errors without logging or re-raising.
|
|
126
|
+
|
|
127
|
+
---
|
|
128
|
+
|
|
129
|
+
|
|
130
|
+
|
|
131
|
+
**Slash command: `/review` or `/tribunal-full`**
|
|
132
|
+
**Active reviewers: `logic-reviewer` · `security-auditor`**
|
|
133
|
+
|
|
134
|
+
### ❌ Forbidden AI Tropes
|
|
135
|
+
|
|
136
|
+
1. **Blind Assumptions:** Never make an assumption without documenting it clearly with `// VERIFY: [reason]`.
|
|
137
|
+
2. **Silent Degradation:** Catching and suppressing errors without logging or handling.
|
|
138
|
+
3. **Context Amnesia:** Forgetting the user's constraints and offering generic advice instead of tailored solutions.
|
|
139
|
+
|
|
140
|
+
|
|
141
|
+
|
|
142
|
+
Review these questions before confirming output:
|
|
143
|
+
```
|
|
144
|
+
✅ Did I rely ONLY on real, verified tools and methods?
|
|
145
|
+
✅ Is this solution appropriately scoped to the user's constraints?
|
|
146
|
+
✅ Did I handle potential failure modes and edge cases?
|
|
147
|
+
✅ Have I avoided generic boilerplate that doesn't add value?
|
|
148
|
+
```
|
|
149
|
+
|
|
150
|
+
### 🛑 Verification-Before-Completion (VBC) Protocol
|
|
151
|
+
|
|
152
|
+
**CRITICAL:** You must follow a strict "evidence-based closeout" state machine.
|
|
153
|
+
- ❌ **Forbidden:** Declaring a task complete because the output "looks correct."
|
|
154
|
+
- ✅ **Required:** You are explicitly forbidden from finalizing any task without providing **concrete evidence** (terminal output, passing tests, compile success, or equivalent proof) that your output works as intended.
|
|
@@ -85,3 +85,45 @@ Last digest: `never`
|
|
|
85
85
|
Total cycles: `0`
|
|
86
86
|
|
|
87
87
|
Run `python .agent/scripts/skill_evolution.py status` to see full statistics.
|
|
88
|
+
|
|
89
|
+
|
|
90
|
+
---
|
|
91
|
+
|
|
92
|
+
|
|
93
|
+
|
|
94
|
+
AI coding assistants often fall into specific bad habits when dealing with this domain. These are strictly forbidden:
|
|
95
|
+
|
|
96
|
+
1. **Over-engineering:** Proposing complex abstractions or distributed systems when a simpler approach suffices.
|
|
97
|
+
2. **Hallucinated Libraries/Methods:** Using non-existent methods or packages. Always `// VERIFY` or check `package.json` / `requirements.txt`.
|
|
98
|
+
3. **Skipping Edge Cases:** Writing the "happy path" and ignoring error handling, timeouts, or data validation.
|
|
99
|
+
4. **Context Amnesia:** Forgetting the user's constraints and offering generic advice instead of tailored solutions.
|
|
100
|
+
5. **Silent Degradation:** Catching and suppressing errors without logging or re-raising.
|
|
101
|
+
|
|
102
|
+
---
|
|
103
|
+
|
|
104
|
+
|
|
105
|
+
|
|
106
|
+
**Slash command: `/review` or `/tribunal-full`**
|
|
107
|
+
**Active reviewers: `logic-reviewer` · `security-auditor`**
|
|
108
|
+
|
|
109
|
+
### ❌ Forbidden AI Tropes
|
|
110
|
+
|
|
111
|
+
1. **Blind Assumptions:** Never make an assumption without documenting it clearly with `// VERIFY: [reason]`.
|
|
112
|
+
2. **Silent Degradation:** Catching and suppressing errors without logging or handling.
|
|
113
|
+
3. **Context Amnesia:** Forgetting the user's constraints and offering generic advice instead of tailored solutions.
|
|
114
|
+
|
|
115
|
+
|
|
116
|
+
|
|
117
|
+
Review these questions before confirming output:
|
|
118
|
+
```
|
|
119
|
+
✅ Did I rely ONLY on real, verified tools and methods?
|
|
120
|
+
✅ Is this solution appropriately scoped to the user's constraints?
|
|
121
|
+
✅ Did I handle potential failure modes and edge cases?
|
|
122
|
+
✅ Have I avoided generic boilerplate that doesn't add value?
|
|
123
|
+
```
|
|
124
|
+
|
|
125
|
+
### 🛑 Verification-Before-Completion (VBC) Protocol
|
|
126
|
+
|
|
127
|
+
**CRITICAL:** You must follow a strict "evidence-based closeout" state machine.
|
|
128
|
+
- ❌ **Forbidden:** Declaring a task complete because the output "looks correct."
|
|
129
|
+
- ✅ **Required:** You are explicitly forbidden from finalizing any task without providing **concrete evidence** (terminal output, passing tests, compile success, or equivalent proof) that your output works as intended.
|
|
@@ -207,3 +207,45 @@ Evidence: [test output / lint pass / compile success]
|
|
|
207
207
|
Do not mark status as VERIFIED until concrete terminal evidence is provided.
|
|
208
208
|
|
|
209
209
|
---
|
|
210
|
+
|
|
211
|
+
|
|
212
|
+
---
|
|
213
|
+
|
|
214
|
+
|
|
215
|
+
|
|
216
|
+
AI coding assistants often fall into specific bad habits when dealing with this domain. These are strictly forbidden:
|
|
217
|
+
|
|
218
|
+
1. **Over-engineering:** Proposing complex abstractions or distributed systems when a simpler approach suffices.
|
|
219
|
+
2. **Hallucinated Libraries/Methods:** Using non-existent methods or packages. Always `// VERIFY` or check `package.json` / `requirements.txt`.
|
|
220
|
+
3. **Skipping Edge Cases:** Writing the "happy path" and ignoring error handling, timeouts, or data validation.
|
|
221
|
+
4. **Context Amnesia:** Forgetting the user's constraints and offering generic advice instead of tailored solutions.
|
|
222
|
+
5. **Silent Degradation:** Catching and suppressing errors without logging or re-raising.
|
|
223
|
+
|
|
224
|
+
---
|
|
225
|
+
|
|
226
|
+
|
|
227
|
+
|
|
228
|
+
**Slash command: `/review` or `/tribunal-full`**
|
|
229
|
+
**Active reviewers: `logic-reviewer` · `security-auditor`**
|
|
230
|
+
|
|
231
|
+
### ❌ Forbidden AI Tropes
|
|
232
|
+
|
|
233
|
+
1. **Blind Assumptions:** Never make an assumption without documenting it clearly with `// VERIFY: [reason]`.
|
|
234
|
+
2. **Silent Degradation:** Catching and suppressing errors without logging or handling.
|
|
235
|
+
3. **Context Amnesia:** Forgetting the user's constraints and offering generic advice instead of tailored solutions.
|
|
236
|
+
|
|
237
|
+
|
|
238
|
+
|
|
239
|
+
Review these questions before confirming output:
|
|
240
|
+
```
|
|
241
|
+
✅ Did I rely ONLY on real, verified tools and methods?
|
|
242
|
+
✅ Is this solution appropriately scoped to the user's constraints?
|
|
243
|
+
✅ Did I handle potential failure modes and edge cases?
|
|
244
|
+
✅ Have I avoided generic boilerplate that doesn't add value?
|
|
245
|
+
```
|
|
246
|
+
|
|
247
|
+
### 🛑 Verification-Before-Completion (VBC) Protocol
|
|
248
|
+
|
|
249
|
+
**CRITICAL:** You must follow a strict "evidence-based closeout" state machine.
|
|
250
|
+
- ❌ **Forbidden:** Declaring a task complete because the output "looks correct."
|
|
251
|
+
- ✅ **Required:** You are explicitly forbidden from finalizing any task without providing **concrete evidence** (terminal output, passing tests, compile success, or equivalent proof) that your output works as intended.
|
|
@@ -271,3 +271,45 @@ my-api/
|
|
|
271
271
|
├── alembic/ # Migrations
|
|
272
272
|
└── pyproject.toml
|
|
273
273
|
```
|
|
274
|
+
|
|
275
|
+
|
|
276
|
+
---
|
|
277
|
+
|
|
278
|
+
|
|
279
|
+
|
|
280
|
+
AI coding assistants often fall into specific bad habits when dealing with this domain. These are strictly forbidden:
|
|
281
|
+
|
|
282
|
+
1. **Over-engineering:** Proposing complex abstractions or distributed systems when a simpler approach suffices.
|
|
283
|
+
2. **Hallucinated Libraries/Methods:** Using non-existent methods or packages. Always `// VERIFY` or check `package.json` / `requirements.txt`.
|
|
284
|
+
3. **Skipping Edge Cases:** Writing the "happy path" and ignoring error handling, timeouts, or data validation.
|
|
285
|
+
4. **Context Amnesia:** Forgetting the user's constraints and offering generic advice instead of tailored solutions.
|
|
286
|
+
5. **Silent Degradation:** Catching and suppressing errors without logging or re-raising.
|
|
287
|
+
|
|
288
|
+
---
|
|
289
|
+
|
|
290
|
+
|
|
291
|
+
|
|
292
|
+
**Slash command: `/review` or `/tribunal-full`**
|
|
293
|
+
**Active reviewers: `logic-reviewer` · `security-auditor`**
|
|
294
|
+
|
|
295
|
+
### ❌ Forbidden AI Tropes
|
|
296
|
+
|
|
297
|
+
1. **Blind Assumptions:** Never make an assumption without documenting it clearly with `// VERIFY: [reason]`.
|
|
298
|
+
2. **Silent Degradation:** Catching and suppressing errors without logging or handling.
|
|
299
|
+
3. **Context Amnesia:** Forgetting the user's constraints and offering generic advice instead of tailored solutions.
|
|
300
|
+
|
|
301
|
+
|
|
302
|
+
|
|
303
|
+
Review these questions before confirming output:
|
|
304
|
+
```
|
|
305
|
+
✅ Did I rely ONLY on real, verified tools and methods?
|
|
306
|
+
✅ Is this solution appropriately scoped to the user's constraints?
|
|
307
|
+
✅ Did I handle potential failure modes and edge cases?
|
|
308
|
+
✅ Have I avoided generic boilerplate that doesn't add value?
|
|
309
|
+
```
|
|
310
|
+
|
|
311
|
+
### 🛑 Verification-Before-Completion (VBC) Protocol
|
|
312
|
+
|
|
313
|
+
**CRITICAL:** You must follow a strict "evidence-based closeout" state machine.
|
|
314
|
+
- ❌ **Forbidden:** Declaring a task complete because the output "looks correct."
|
|
315
|
+
- ✅ **Required:** You are explicitly forbidden from finalizing any task without providing **concrete evidence** (terminal output, passing tests, compile success, or equivalent proof) that your output works as intended.
|
|
@@ -225,3 +225,45 @@ function Input({ ref, ...props }: ComponentProps<"input"> & { ref?: Ref<HTMLInpu
|
|
|
225
225
|
- ✅ `userEvent` over `fireEvent` (async, closer to real interaction)
|
|
226
226
|
- ✅ Mock server calls with MSW (Mock Service Worker)
|
|
227
227
|
- ❌ Never test internal state, ref values, or component instances
|
|
228
|
+
|
|
229
|
+
|
|
230
|
+
---
|
|
231
|
+
|
|
232
|
+
|
|
233
|
+
|
|
234
|
+
AI coding assistants often fall into specific bad habits when dealing with this domain. These are strictly forbidden:
|
|
235
|
+
|
|
236
|
+
1. **Over-engineering:** Proposing complex abstractions or distributed systems when a simpler approach suffices.
|
|
237
|
+
2. **Hallucinated Libraries/Methods:** Using non-existent methods or packages. Always `// VERIFY` or check `package.json` / `requirements.txt`.
|
|
238
|
+
3. **Skipping Edge Cases:** Writing the "happy path" and ignoring error handling, timeouts, or data validation.
|
|
239
|
+
4. **Context Amnesia:** Forgetting the user's constraints and offering generic advice instead of tailored solutions.
|
|
240
|
+
5. **Silent Degradation:** Catching and suppressing errors without logging or re-raising.
|
|
241
|
+
|
|
242
|
+
---
|
|
243
|
+
|
|
244
|
+
|
|
245
|
+
|
|
246
|
+
**Slash command: `/review` or `/tribunal-full`**
|
|
247
|
+
**Active reviewers: `logic-reviewer` · `security-auditor`**
|
|
248
|
+
|
|
249
|
+
### ❌ Forbidden AI Tropes
|
|
250
|
+
|
|
251
|
+
1. **Blind Assumptions:** Never make an assumption without documenting it clearly with `// VERIFY: [reason]`.
|
|
252
|
+
2. **Silent Degradation:** Catching and suppressing errors without logging or handling.
|
|
253
|
+
3. **Context Amnesia:** Forgetting the user's constraints and offering generic advice instead of tailored solutions.
|
|
254
|
+
|
|
255
|
+
|
|
256
|
+
|
|
257
|
+
Review these questions before confirming output:
|
|
258
|
+
```
|
|
259
|
+
✅ Did I rely ONLY on real, verified tools and methods?
|
|
260
|
+
✅ Is this solution appropriately scoped to the user's constraints?
|
|
261
|
+
✅ Did I handle potential failure modes and edge cases?
|
|
262
|
+
✅ Have I avoided generic boilerplate that doesn't add value?
|
|
263
|
+
```
|
|
264
|
+
|
|
265
|
+
### 🛑 Verification-Before-Completion (VBC) Protocol
|
|
266
|
+
|
|
267
|
+
**CRITICAL:** You must follow a strict "evidence-based closeout" state machine.
|
|
268
|
+
- ❌ **Forbidden:** Declaring a task complete because the output "looks correct."
|
|
269
|
+
- ✅ **Required:** You are explicitly forbidden from finalizing any task without providing **concrete evidence** (terminal output, passing tests, compile success, or equivalent proof) that your output works as intended.
|
|
@@ -248,3 +248,45 @@ Evidence: [file written at path / content reviewed]
|
|
|
248
248
|
```
|
|
249
249
|
|
|
250
250
|
---
|
|
251
|
+
|
|
252
|
+
|
|
253
|
+
---
|
|
254
|
+
|
|
255
|
+
|
|
256
|
+
|
|
257
|
+
AI coding assistants often fall into specific bad habits when dealing with this domain. These are strictly forbidden:
|
|
258
|
+
|
|
259
|
+
1. **Over-engineering:** Proposing complex abstractions or distributed systems when a simpler approach suffices.
|
|
260
|
+
2. **Hallucinated Libraries/Methods:** Using non-existent methods or packages. Always `// VERIFY` or check `package.json` / `requirements.txt`.
|
|
261
|
+
3. **Skipping Edge Cases:** Writing the "happy path" and ignoring error handling, timeouts, or data validation.
|
|
262
|
+
4. **Context Amnesia:** Forgetting the user's constraints and offering generic advice instead of tailored solutions.
|
|
263
|
+
5. **Silent Degradation:** Catching and suppressing errors without logging or re-raising.
|
|
264
|
+
|
|
265
|
+
---
|
|
266
|
+
|
|
267
|
+
|
|
268
|
+
|
|
269
|
+
**Slash command: `/review` or `/tribunal-full`**
|
|
270
|
+
**Active reviewers: `logic-reviewer` · `security-auditor`**
|
|
271
|
+
|
|
272
|
+
### ❌ Forbidden AI Tropes
|
|
273
|
+
|
|
274
|
+
1. **Blind Assumptions:** Never make an assumption without documenting it clearly with `// VERIFY: [reason]`.
|
|
275
|
+
2. **Silent Degradation:** Catching and suppressing errors without logging or handling.
|
|
276
|
+
3. **Context Amnesia:** Forgetting the user's constraints and offering generic advice instead of tailored solutions.
|
|
277
|
+
|
|
278
|
+
|
|
279
|
+
|
|
280
|
+
Review these questions before confirming output:
|
|
281
|
+
```
|
|
282
|
+
✅ Did I rely ONLY on real, verified tools and methods?
|
|
283
|
+
✅ Is this solution appropriately scoped to the user's constraints?
|
|
284
|
+
✅ Did I handle potential failure modes and edge cases?
|
|
285
|
+
✅ Have I avoided generic boilerplate that doesn't add value?
|
|
286
|
+
```
|
|
287
|
+
|
|
288
|
+
### 🛑 Verification-Before-Completion (VBC) Protocol
|
|
289
|
+
|
|
290
|
+
**CRITICAL:** You must follow a strict "evidence-based closeout" state machine.
|
|
291
|
+
- ❌ **Forbidden:** Declaring a task complete because the output "looks correct."
|
|
292
|
+
- ✅ **Required:** You are explicitly forbidden from finalizing any task without providing **concrete evidence** (terminal output, passing tests, compile success, or equivalent proof) that your output works as intended.
|
|
@@ -267,3 +267,45 @@ class PresenceManager {
|
|
|
267
267
|
```
|
|
268
268
|
|
|
269
269
|
---
|
|
270
|
+
|
|
271
|
+
|
|
272
|
+
---
|
|
273
|
+
|
|
274
|
+
|
|
275
|
+
|
|
276
|
+
AI coding assistants often fall into specific bad habits when dealing with this domain. These are strictly forbidden:
|
|
277
|
+
|
|
278
|
+
1. **Over-engineering:** Proposing complex abstractions or distributed systems when a simpler approach suffices.
|
|
279
|
+
2. **Hallucinated Libraries/Methods:** Using non-existent methods or packages. Always `// VERIFY` or check `package.json` / `requirements.txt`.
|
|
280
|
+
3. **Skipping Edge Cases:** Writing the "happy path" and ignoring error handling, timeouts, or data validation.
|
|
281
|
+
4. **Context Amnesia:** Forgetting the user's constraints and offering generic advice instead of tailored solutions.
|
|
282
|
+
5. **Silent Degradation:** Catching and suppressing errors without logging or re-raising.
|
|
283
|
+
|
|
284
|
+
---
|
|
285
|
+
|
|
286
|
+
|
|
287
|
+
|
|
288
|
+
**Slash command: `/review` or `/tribunal-full`**
|
|
289
|
+
**Active reviewers: `logic-reviewer` · `security-auditor`**
|
|
290
|
+
|
|
291
|
+
### ❌ Forbidden AI Tropes
|
|
292
|
+
|
|
293
|
+
1. **Blind Assumptions:** Never make an assumption without documenting it clearly with `// VERIFY: [reason]`.
|
|
294
|
+
2. **Silent Degradation:** Catching and suppressing errors without logging or handling.
|
|
295
|
+
3. **Context Amnesia:** Forgetting the user's constraints and offering generic advice instead of tailored solutions.
|
|
296
|
+
|
|
297
|
+
|
|
298
|
+
|
|
299
|
+
Review these questions before confirming output:
|
|
300
|
+
```
|
|
301
|
+
✅ Did I rely ONLY on real, verified tools and methods?
|
|
302
|
+
✅ Is this solution appropriately scoped to the user's constraints?
|
|
303
|
+
✅ Did I handle potential failure modes and edge cases?
|
|
304
|
+
✅ Have I avoided generic boilerplate that doesn't add value?
|
|
305
|
+
```
|
|
306
|
+
|
|
307
|
+
### 🛑 Verification-Before-Completion (VBC) Protocol
|
|
308
|
+
|
|
309
|
+
**CRITICAL:** You must follow a strict "evidence-based closeout" state machine.
|
|
310
|
+
- ❌ **Forbidden:** Declaring a task complete because the output "looks correct."
|
|
311
|
+
- ✅ **Required:** You are explicitly forbidden from finalizing any task without providing **concrete evidence** (terminal output, passing tests, compile success, or equivalent proof) that your output works as intended.
|
|
@@ -166,3 +166,45 @@ Pre-Flight: ✅ All checks passed
|
|
|
166
166
|
```
|
|
167
167
|
|
|
168
168
|
---
|
|
169
|
+
|
|
170
|
+
|
|
171
|
+
---
|
|
172
|
+
|
|
173
|
+
|
|
174
|
+
|
|
175
|
+
AI coding assistants often fall into specific bad habits when dealing with this domain. These are strictly forbidden:
|
|
176
|
+
|
|
177
|
+
1. **Over-engineering:** Proposing complex abstractions or distributed systems when a simpler approach suffices.
|
|
178
|
+
2. **Hallucinated Libraries/Methods:** Using non-existent methods or packages. Always `// VERIFY` or check `package.json` / `requirements.txt`.
|
|
179
|
+
3. **Skipping Edge Cases:** Writing the "happy path" and ignoring error handling, timeouts, or data validation.
|
|
180
|
+
4. **Context Amnesia:** Forgetting the user's constraints and offering generic advice instead of tailored solutions.
|
|
181
|
+
5. **Silent Degradation:** Catching and suppressing errors without logging or re-raising.
|
|
182
|
+
|
|
183
|
+
---
|
|
184
|
+
|
|
185
|
+
|
|
186
|
+
|
|
187
|
+
**Slash command: `/review` or `/tribunal-full`**
|
|
188
|
+
**Active reviewers: `logic-reviewer` · `security-auditor`**
|
|
189
|
+
|
|
190
|
+
### ❌ Forbidden AI Tropes
|
|
191
|
+
|
|
192
|
+
1. **Blind Assumptions:** Never make an assumption without documenting it clearly with `// VERIFY: [reason]`.
|
|
193
|
+
2. **Silent Degradation:** Catching and suppressing errors without logging or handling.
|
|
194
|
+
3. **Context Amnesia:** Forgetting the user's constraints and offering generic advice instead of tailored solutions.
|
|
195
|
+
|
|
196
|
+
|
|
197
|
+
|
|
198
|
+
Review these questions before confirming output:
|
|
199
|
+
```
|
|
200
|
+
✅ Did I rely ONLY on real, verified tools and methods?
|
|
201
|
+
✅ Is this solution appropriately scoped to the user's constraints?
|
|
202
|
+
✅ Did I handle potential failure modes and edge cases?
|
|
203
|
+
✅ Have I avoided generic boilerplate that doesn't add value?
|
|
204
|
+
```
|
|
205
|
+
|
|
206
|
+
### 🛑 Verification-Before-Completion (VBC) Protocol
|
|
207
|
+
|
|
208
|
+
**CRITICAL:** You must follow a strict "evidence-based closeout" state machine.
|
|
209
|
+
- ❌ **Forbidden:** Declaring a task complete because the output "looks correct."
|
|
210
|
+
- ✅ **Required:** You are explicitly forbidden from finalizing any task without providing **concrete evidence** (terminal output, passing tests, compile success, or equivalent proof) that your output works as intended.
|
|
@@ -621,3 +621,45 @@ let word_counts: HashMap<&str, usize> = words.iter()
|
|
|
621
621
|
```
|
|
622
622
|
|
|
623
623
|
|
|
624
|
+
|
|
625
|
+
|
|
626
|
+
---
|
|
627
|
+
|
|
628
|
+
|
|
629
|
+
|
|
630
|
+
AI coding assistants often fall into specific bad habits when dealing with this domain. These are strictly forbidden:
|
|
631
|
+
|
|
632
|
+
1. **Over-engineering:** Proposing complex abstractions or distributed systems when a simpler approach suffices.
|
|
633
|
+
2. **Hallucinated Libraries/Methods:** Using non-existent methods or packages. Always `// VERIFY` or check `package.json` / `requirements.txt`.
|
|
634
|
+
3. **Skipping Edge Cases:** Writing the "happy path" and ignoring error handling, timeouts, or data validation.
|
|
635
|
+
4. **Context Amnesia:** Forgetting the user's constraints and offering generic advice instead of tailored solutions.
|
|
636
|
+
5. **Silent Degradation:** Catching and suppressing errors without logging or re-raising.
|
|
637
|
+
|
|
638
|
+
---
|
|
639
|
+
|
|
640
|
+
|
|
641
|
+
|
|
642
|
+
**Slash command: `/review` or `/tribunal-full`**
|
|
643
|
+
**Active reviewers: `logic-reviewer` · `security-auditor`**
|
|
644
|
+
|
|
645
|
+
### ❌ Forbidden AI Tropes
|
|
646
|
+
|
|
647
|
+
1. **Blind Assumptions:** Never make an assumption without documenting it clearly with `// VERIFY: [reason]`.
|
|
648
|
+
2. **Silent Degradation:** Catching and suppressing errors without logging or handling.
|
|
649
|
+
3. **Context Amnesia:** Forgetting the user's constraints and offering generic advice instead of tailored solutions.
|
|
650
|
+
|
|
651
|
+
|
|
652
|
+
|
|
653
|
+
Review these questions before confirming output:
|
|
654
|
+
```
|
|
655
|
+
✅ Did I rely ONLY on real, verified tools and methods?
|
|
656
|
+
✅ Is this solution appropriately scoped to the user's constraints?
|
|
657
|
+
✅ Did I handle potential failure modes and edge cases?
|
|
658
|
+
✅ Have I avoided generic boilerplate that doesn't add value?
|
|
659
|
+
```
|
|
660
|
+
|
|
661
|
+
### 🛑 Verification-Before-Completion (VBC) Protocol
|
|
662
|
+
|
|
663
|
+
**CRITICAL:** You must follow a strict "evidence-based closeout" state machine.
|
|
664
|
+
- ❌ **Forbidden:** Declaring a task complete because the output "looks correct."
|
|
665
|
+
- ✅ **Required:** You are explicitly forbidden from finalizing any task without providing **concrete evidence** (terminal output, passing tests, compile success, or equivalent proof) that your output works as intended.
|
|
@@ -127,3 +127,45 @@ If a page shouldn't be indexed (e.g., dynamic search result matrices, user profi
|
|
|
127
127
|
- **`sitemap.xml`**: A programmatic manifest mapped to root guiding crawlers mathematically through all valid indexable paths.
|
|
128
128
|
|
|
129
129
|
---
|
|
130
|
+
|
|
131
|
+
|
|
132
|
+
---
|
|
133
|
+
|
|
134
|
+
|
|
135
|
+
|
|
136
|
+
AI coding assistants often fall into specific bad habits when dealing with this domain. These are strictly forbidden:
|
|
137
|
+
|
|
138
|
+
1. **Over-engineering:** Proposing complex abstractions or distributed systems when a simpler approach suffices.
|
|
139
|
+
2. **Hallucinated Libraries/Methods:** Using non-existent methods or packages. Always `// VERIFY` or check `package.json` / `requirements.txt`.
|
|
140
|
+
3. **Skipping Edge Cases:** Writing the "happy path" and ignoring error handling, timeouts, or data validation.
|
|
141
|
+
4. **Context Amnesia:** Forgetting the user's constraints and offering generic advice instead of tailored solutions.
|
|
142
|
+
5. **Silent Degradation:** Catching and suppressing errors without logging or re-raising.
|
|
143
|
+
|
|
144
|
+
---
|
|
145
|
+
|
|
146
|
+
|
|
147
|
+
|
|
148
|
+
**Slash command: `/review` or `/tribunal-full`**
|
|
149
|
+
**Active reviewers: `logic-reviewer` · `security-auditor`**
|
|
150
|
+
|
|
151
|
+
### ❌ Forbidden AI Tropes
|
|
152
|
+
|
|
153
|
+
1. **Blind Assumptions:** Never make an assumption without documenting it clearly with `// VERIFY: [reason]`.
|
|
154
|
+
2. **Silent Degradation:** Catching and suppressing errors without logging or handling.
|
|
155
|
+
3. **Context Amnesia:** Forgetting the user's constraints and offering generic advice instead of tailored solutions.
|
|
156
|
+
|
|
157
|
+
|
|
158
|
+
|
|
159
|
+
Review these questions before confirming output:
|
|
160
|
+
```
|
|
161
|
+
✅ Did I rely ONLY on real, verified tools and methods?
|
|
162
|
+
✅ Is this solution appropriately scoped to the user's constraints?
|
|
163
|
+
✅ Did I handle potential failure modes and edge cases?
|
|
164
|
+
✅ Have I avoided generic boilerplate that doesn't add value?
|
|
165
|
+
```
|
|
166
|
+
|
|
167
|
+
### 🛑 Verification-Before-Completion (VBC) Protocol
|
|
168
|
+
|
|
169
|
+
**CRITICAL:** You must follow a strict "evidence-based closeout" state machine.
|
|
170
|
+
- ❌ **Forbidden:** Declaring a task complete because the output "looks correct."
|
|
171
|
+
- ✅ **Required:** You are explicitly forbidden from finalizing any task without providing **concrete evidence** (terminal output, passing tests, compile success, or equivalent proof) that your output works as intended.
|
|
@@ -162,3 +162,45 @@ A server will inevitably crash when `/var/log` consumes 100% of the disk.
|
|
|
162
162
|
```
|
|
163
163
|
|
|
164
164
|
---
|
|
165
|
+
|
|
166
|
+
|
|
167
|
+
---
|
|
168
|
+
|
|
169
|
+
|
|
170
|
+
|
|
171
|
+
AI coding assistants often fall into specific bad habits when dealing with this domain. These are strictly forbidden:
|
|
172
|
+
|
|
173
|
+
1. **Over-engineering:** Proposing complex abstractions or distributed systems when a simpler approach suffices.
|
|
174
|
+
2. **Hallucinated Libraries/Methods:** Using non-existent methods or packages. Always `// VERIFY` or check `package.json` / `requirements.txt`.
|
|
175
|
+
3. **Skipping Edge Cases:** Writing the "happy path" and ignoring error handling, timeouts, or data validation.
|
|
176
|
+
4. **Context Amnesia:** Forgetting the user's constraints and offering generic advice instead of tailored solutions.
|
|
177
|
+
5. **Silent Degradation:** Catching and suppressing errors without logging or re-raising.
|
|
178
|
+
|
|
179
|
+
---
|
|
180
|
+
|
|
181
|
+
|
|
182
|
+
|
|
183
|
+
**Slash command: `/review` or `/tribunal-full`**
|
|
184
|
+
**Active reviewers: `logic-reviewer` · `security-auditor`**
|
|
185
|
+
|
|
186
|
+
### ❌ Forbidden AI Tropes
|
|
187
|
+
|
|
188
|
+
1. **Blind Assumptions:** Never make an assumption without documenting it clearly with `// VERIFY: [reason]`.
|
|
189
|
+
2. **Silent Degradation:** Catching and suppressing errors without logging or handling.
|
|
190
|
+
3. **Context Amnesia:** Forgetting the user's constraints and offering generic advice instead of tailored solutions.
|
|
191
|
+
|
|
192
|
+
|
|
193
|
+
|
|
194
|
+
Review these questions before confirming output:
|
|
195
|
+
```
|
|
196
|
+
✅ Did I rely ONLY on real, verified tools and methods?
|
|
197
|
+
✅ Is this solution appropriately scoped to the user's constraints?
|
|
198
|
+
✅ Did I handle potential failure modes and edge cases?
|
|
199
|
+
✅ Have I avoided generic boilerplate that doesn't add value?
|
|
200
|
+
```
|
|
201
|
+
|
|
202
|
+
### 🛑 Verification-Before-Completion (VBC) Protocol
|
|
203
|
+
|
|
204
|
+
**CRITICAL:** You must follow a strict "evidence-based closeout" state machine.
|
|
205
|
+
- ❌ **Forbidden:** Declaring a task complete because the output "looks correct."
|
|
206
|
+
- ✅ **Required:** You are explicitly forbidden from finalizing any task without providing **concrete evidence** (terminal output, passing tests, compile success, or equivalent proof) that your output works as intended.
|