agentic-loop 3.14.1 → 3.16.1

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.
@@ -6,34 +6,9 @@
6
6
  "status": "pending"
7
7
  },
8
8
 
9
- "originalContext": "docs/ideas/auth.md",
10
-
11
- "techStack": {
12
- "frontend": "React",
13
- "backend": "Node.js",
14
- "database": "PostgreSQL"
15
- },
16
-
17
- "testing": {
18
- "approach": "TDD",
19
- "unit": {
20
- "frontend": "vitest",
21
- "backend": "jest"
22
- },
23
- "integration": "playwright",
24
- "e2e": "playwright"
25
- },
26
-
27
- "globalConstraints": [
28
- "All API calls must have error handling",
29
- "Use existing UI components from src/components/ui",
30
- "Never store passwords in plain text",
31
- "Sanitize all user input before database operations"
32
- ],
33
-
34
9
  "metadata": {
35
10
  "createdAt": "2026-01-27T10:00:00Z",
36
- "estimatedStories": 2,
11
+ "estimatedStories": 3,
37
12
  "complexity": "medium"
38
13
  },
39
14
 
@@ -45,6 +20,17 @@
45
20
  "priority": 1,
46
21
  "passes": false,
47
22
 
23
+ "techStack": {
24
+ "backend": "Node.js",
25
+ "database": "PostgreSQL"
26
+ },
27
+
28
+ "constraints": [
29
+ "All API calls must have error handling",
30
+ "Never store passwords in plain text",
31
+ "Sanitize all user input before database operations"
32
+ ],
33
+
48
34
  "files": {
49
35
  "create": ["src/api/users.ts", "src/api/users.test.ts"],
50
36
  "modify": ["src/api/index.ts"],
@@ -69,6 +55,7 @@
69
55
  "testing": {
70
56
  "types": ["unit", "integration"],
71
57
  "approach": "TDD",
58
+ "runner": "jest",
72
59
  "files": {
73
60
  "unit": ["src/api/users.test.ts"]
74
61
  }
@@ -86,6 +73,15 @@
86
73
  "response": {"id": "string", "email": "string"}
87
74
  },
88
75
 
76
+ "testUsers": {
77
+ "admin": {"email": "admin@test.com", "password": "test123"},
78
+ "user": {"email": "user@test.com", "password": "test123"}
79
+ },
80
+
81
+ "contextFiles": [
82
+ "docs/ideas/auth.md"
83
+ ],
84
+
89
85
  "notes": "SECURITY: Use bcrypt with cost 10+. Never log passwords. Validate email format server-side even if validated client-side.",
90
86
  "dependsOn": []
91
87
  },
@@ -96,6 +92,14 @@
96
92
  "priority": 2,
97
93
  "passes": false,
98
94
 
95
+ "techStack": {
96
+ "frontend": "React"
97
+ },
98
+
99
+ "constraints": [
100
+ "Use existing UI components from src/components/ui"
101
+ ],
102
+
99
103
  "files": {
100
104
  "create": ["src/components/RegisterForm.tsx", "src/components/RegisterForm.test.tsx"],
101
105
  "modify": ["src/pages/index.tsx"],
@@ -122,6 +126,7 @@
122
126
  "testing": {
123
127
  "types": ["unit", "e2e"],
124
128
  "approach": "TDD",
129
+ "runner": "vitest",
125
130
  "files": {
126
131
  "unit": ["src/components/RegisterForm.test.tsx"],
127
132
  "e2e": ["tests/e2e/register.spec.ts"]
@@ -152,6 +157,15 @@
152
157
  "priority": 3,
153
158
  "passes": false,
154
159
 
160
+ "techStack": {
161
+ "backend": "Node.js",
162
+ "database": "PostgreSQL"
163
+ },
164
+
165
+ "constraints": [
166
+ "All API calls must have error handling"
167
+ ],
168
+
155
169
  "files": {
156
170
  "create": [],
157
171
  "modify": ["src/api/users.ts"],
@@ -176,6 +190,7 @@
176
190
  "testing": {
177
191
  "types": ["integration"],
178
192
  "approach": "TDD",
193
+ "runner": "jest",
179
194
  "files": {}
180
195
  },
181
196
 
@@ -190,6 +205,10 @@
190
205
  "response": {"data": "User[]", "total": "number", "page": "number", "limit": "number"}
191
206
  },
192
207
 
208
+ "contextFiles": [
209
+ "docs/ideas/auth.md"
210
+ ],
211
+
193
212
  "notes": "SCALE: Always paginate list endpoints. Enforce max limit to prevent memory issues. Add database index for sort column.",
194
213
  "dependsOn": ["TASK-001"]
195
214
  }