guardian-framework 0.1.4 → 0.1.6

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/dist/cli.js CHANGED
@@ -1335,7 +1335,7 @@ __export(exports_package, {
1335
1335
  bin: () => bin,
1336
1336
  author: () => author
1337
1337
  });
1338
- var name = "guardian-framework", version = "0.1.4", description = "Token-optimized agentic framework scaffolder with pi-first architecture", type = "module", main = "dist/exports.js", exports, types = "dist/exports.d.ts", bin, files, engines, scripts, publishConfig, pi, repository, homepage = "https://github.com/arman-jalili/guardian-framework#readme", bugs, dependencies, devDependencies, keywords, author = "Arman Wolkensteiner-Jalili", license = "MIT", package_default;
1338
+ var name = "guardian-framework", version = "0.1.6", description = "Token-optimized agentic framework scaffolder with pi-first architecture", type = "module", main = "dist/exports.js", exports, types = "dist/exports.d.ts", bin, files, engines, scripts, publishConfig, pi, repository, homepage = "https://github.com/arman-jalili/guardian-framework#readme", bugs, dependencies, devDependencies, keywords, author = "Arman Wolkensteiner-Jalili", license = "MIT", package_default;
1339
1339
  var init_package = __esm(() => {
1340
1340
  exports = {
1341
1341
  ".": {
package/dist/exports.js CHANGED
@@ -995,7 +995,7 @@ __export(exports_package, {
995
995
  bin: () => bin,
996
996
  author: () => author
997
997
  });
998
- var name = "guardian-framework", version = "0.1.4", description = "Token-optimized agentic framework scaffolder with pi-first architecture", type = "module", main = "dist/exports.js", exports, types = "dist/exports.d.ts", bin, files, engines, scripts, publishConfig, pi, repository, homepage = "https://github.com/arman-jalili/guardian-framework#readme", bugs, dependencies, devDependencies, keywords, author = "Arman Wolkensteiner-Jalili", license = "MIT", package_default;
998
+ var name = "guardian-framework", version = "0.1.6", description = "Token-optimized agentic framework scaffolder with pi-first architecture", type = "module", main = "dist/exports.js", exports, types = "dist/exports.d.ts", bin, files, engines, scripts, publishConfig, pi, repository, homepage = "https://github.com/arman-jalili/guardian-framework#readme", bugs, dependencies, devDependencies, keywords, author = "Arman Wolkensteiner-Jalili", license = "MIT", package_default;
999
999
  var init_package = __esm(() => {
1000
1000
  exports = {
1001
1001
  ".": {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "guardian-framework",
3
- "version": "0.1.4",
3
+ "version": "0.1.6",
4
4
  "description": "Token-optimized agentic framework scaffolder with pi-first architecture",
5
5
  "type": "module",
6
6
  "main": "dist/exports.js",
@@ -76,6 +76,7 @@ delegation:
76
76
  3. **Architecture traceability** — Every implementation file must reference its architecture source in `.pi/architecture/modules/`.
77
77
  4. **DRY context** — Shared knowledge lives in `.pi/context/`, not scattered across agent files.
78
78
  5. **Shift-left validation** — Plans are validated before code is written.
79
+ 6. **Auto-advance pipeline** — After completing a step, immediately call `pipeline_advance` to move to the next step/item. Do NOT ask the user for permission — just advance and continue.
79
80
 
80
81
  ## Commands
81
82
 
@@ -1,5 +1,5 @@
1
1
  {
2
- "timestamp": "2026-07-02T18:42:54Z",
2
+ "timestamp": "2026-07-02T20:16:37Z",
3
3
  "mode": "all",
4
4
  "stages_run": [],
5
5
  "summary": {
@@ -8,7 +8,7 @@
8
8
  "failed": 1,
9
9
  "skipped": 12
10
10
  },
11
- "duration_seconds": 0,
11
+ "duration_seconds": 1,
12
12
  "results": [
13
13
  {
14
14
  "name": "check_mr_traceability.sh",
@@ -19,6 +19,7 @@ Bug Report
19
19
  │ 2. CODE-DEVELOPER: Fix bug │
20
20
  │ Load: context/patterns.md │
21
21
  │ Output: Fixed code + test │
22
+ │ → Auto-advance: pipeline_advance (no asking)│
22
23
  └──────────────┬──────────────────┘
23
24
 
24
25
 
@@ -67,6 +67,8 @@ User Request
67
67
  │ Load: context/patterns.md │
68
68
  │ Add: Canonical Reference Headers │
69
69
  │ Output: Code + tests │
70
+ │ → Auto-advance: call pipeline_advance │
71
+ │ immediately when done (no asking) │
70
72
  └──────────────┬───────────────────────┘
71
73
 
72
74
 
@@ -19,6 +19,7 @@ Production Issue Detected
19
19
  │ 2. CODE-DEVELOPER: Fix ASAP │
20
20
  │ Minimal change, no refactor │
21
21
  │ Load: context/patterns.md │
22
+ │ → Auto-advance: pipeline_advance (no asking)│
22
23
  └──────────────┬──────────────────┘
23
24
 
24
25
 
@@ -72,6 +72,7 @@ For each issue in batch order:
72
72
  git commit -m "feat: implement #123 - {description}"
73
73
  ```
74
74
  5. Mark issue in progress: `gh issue comment {num} --body "Implementing in {branch}"`
75
+ 6. Auto-advance: call `pipeline_advance` immediately (no asking)
75
76
 
76
77
  ### Phase 6: Pre-MR Validation
77
78
  **Scripts:** Run automated validators
@@ -17,6 +17,7 @@ Every issue must contain:
17
17
  - **Canonical references** — Architecture module + ADR paths
18
18
  - **Files/layers affected** — domain, application, infrastructure, api
19
19
  - **Rollout or operational notes** — When relevant
20
+ - **Auto-advance pipeline** — After completing a step, call `pipeline_advance` immediately. Do NOT ask the user for permission.
20
21
 
21
22
  ---
22
23
 
@@ -184,6 +184,7 @@ No internal dependencies. This is a root component.
184
184
 
185
185
  > **Agent:** Load this file as your complete session context. All information you need is above.
186
186
  > Start by reading the canonical reference files, then implement following the layer structure.
187
+ > **Auto-advance:** After completing each pipeline step, call `pipeline_advance` immediately — do NOT ask the user for permission.
187
188
 
188
189
  ### Steps
189
190
 
@@ -35,6 +35,7 @@ Refactor Request
35
35
  │ Small commits, one change at │
36
36
  │ a time │
37
37
  │ Run tests after each change │
38
+ │ → Auto-advance: pipeline_advance (no asking)│
38
39
  └──────────────┬──────────────────┘
39
40
 
40
41