ctxflow 1.0.9 → 1.1.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.
@@ -5,13 +5,26 @@
5
5
 
6
6
  ## Tasks
7
7
 
8
- <!-- Add tasks specific to this feature -->
8
+ <!--
9
+ Use [] for pending, [x] for completed.
10
+ e.g.
11
+ - [] Create DB schema / migration
12
+ - [] Add API endpoint POST /users
13
+ - [] Write unit tests
14
+ - [x] Define requirements
15
+ -->
9
16
 
10
- - [ ]
17
+ - []
11
18
 
12
19
  ## File structure
13
20
 
14
- <!-- Files to create or modify for this feature -->
21
+ <!--
22
+ Files to create or modify for this feature.
23
+ e.g.
24
+ src/routes/users.ts
25
+ src/models/user.ts
26
+ tests/users.test.ts
27
+ -->
15
28
 
16
29
  ```
17
30
  {{feature}}/
@@ -21,4 +34,7 @@
21
34
 
22
35
  ## Notes
23
36
 
24
- <!-- Open questions, blockers, or context for the AI agent -->
37
+ <!--
38
+ Open questions, blockers, or context for the AI agent.
39
+ e.g. Check if rate limiting already exists before adding it here.
40
+ -->
@@ -5,31 +5,52 @@
5
5
 
6
6
  ## Context
7
7
 
8
- <!-- Why is this feature needed? What user problem does it solve? What is the business motivation? -->
8
+ <!--
9
+ Why is this feature needed? What user problem does it solve?
10
+ e.g. Users can't reset their password, causing high support volume.
11
+ -->
9
12
 
10
13
  ## Stack
11
14
 
12
- <!-- Which parts of the stack does this feature touch? -->
15
+ <!--
16
+ Which parts of the stack does this feature touch?
17
+ e.g.
18
+ - REST API (Express)
19
+ - PostgreSQL — users table
20
+ -->
13
21
 
14
- -
15
22
  -
16
23
 
17
24
  ## Constraints
18
25
 
19
- <!-- Technical, time, or business constraints that affect implementation -->
26
+ <!--
27
+ Technical, time, or business constraints that affect implementation.
28
+ e.g.
29
+ - Must not break existing /auth endpoints
30
+ - No new external dependencies
31
+ -->
20
32
 
21
- -
22
33
  -
23
34
 
24
35
  ## Out of scope
25
36
 
26
- <!-- What is explicitly NOT part of this feature (to avoid scope creep) -->
37
+ <!--
38
+ What is explicitly NOT part of this feature (to avoid scope creep).
39
+ e.g.
40
+ - OAuth / social login
41
+ - Password reset flow
42
+ -->
27
43
 
28
- -
29
44
  -
30
45
 
31
46
  ## Acceptance criteria
32
47
 
33
- - [ ]
34
- - [ ]
35
- - [ ]
48
+ <!--
49
+ Each criterion the AI must verify before marking the feature done.
50
+ e.g.
51
+ - [] User can log in with email and password
52
+ - [] Invalid credentials show a 401 error
53
+ - [] Session token expires after 30 minutes
54
+ -->
55
+
56
+ - []
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ctxflow",
3
- "version": "1.0.9",
3
+ "version": "1.1.0",
4
4
  "description": "Context scaffolding for AI agent-driven development",
5
5
  "type": "module",
6
6
  "bin": {
@@ -34,7 +34,6 @@
34
34
  "dependencies": {
35
35
  "chalk": "^5.3.0",
36
36
  "commander": "^12.1.0",
37
- "ctxflow": "^1.0.8",
38
37
  "figlet": "^1.7.0",
39
38
  "fs-extra": "^11.2.0",
40
39
  "gradient-string": "^3.0.0",