@e0ipso/ai-task-manager 1.9.2 → 1.10.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/package.json
CHANGED
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
---
|
|
2
|
+
argument-hint: [test-command]
|
|
3
|
+
description: Fix the tests your task execution broke.
|
|
4
|
+
---
|
|
5
|
+
Fix all failing tests in this repository. Think harder and use tools.
|
|
6
|
+
|
|
7
|
+
Execute this command to run the tests:
|
|
8
|
+
|
|
9
|
+
<test-command>
|
|
10
|
+
$1
|
|
11
|
+
</test-command>
|
|
12
|
+
|
|
13
|
+
If the test command is empty, read CLAUDE.md for test execution instructions.
|
|
14
|
+
|
|
15
|
+
⚠️ **CRITICAL INTEGRITY REQUIREMENT** ⚠️
|
|
16
|
+
You MUST fix the actual bugs in the source code. Green tests are worthless if achieved through cheating.
|
|
17
|
+
|
|
18
|
+
**This is CHEATING (absolutely forbidden):**
|
|
19
|
+
- Skipping tests with conditionals
|
|
20
|
+
- Modifying test assertions to pass
|
|
21
|
+
- Adding test-environment-specific code to source
|
|
22
|
+
- Disabling or commenting out tests
|
|
23
|
+
- ANY workaround that doesn't fix the real bug
|
|
24
|
+
|
|
25
|
+
**This is THE RIGHT WAY:**
|
|
26
|
+
- Find the root cause in the source code
|
|
27
|
+
- Fix the actual bug
|
|
28
|
+
- Ensure tests pass because the code truly works
|
|
29
|
+
|
|
30
|
+
**Process:**
|
|
31
|
+
1. Run all tests to identify failures
|
|
32
|
+
2. Fix EVERY failing test iteratively
|
|
33
|
+
3. Verify all tests pass legitimately
|
|
34
|
+
|
|
35
|
+
DO NOT STOP after fixing some tests - fix ALL of them.
|
|
36
|
+
|
|
37
|
+
Remember: The entire point of tests is to ensure code robustness. If you cheat in ANY way, the tests become meaningless and I cannot trust that the code actually works.
|
|
38
|
+
|
|
39
|
+
If you get stuck and cannot fix a test properly, ask for help rather than resorting to shortcuts.
|