guardian-framework 0.1.4 → 0.1.5
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.
|
|
1338
|
+
var name = "guardian-framework", version = "0.1.5", 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.
|
|
998
|
+
var name = "guardian-framework", version = "0.1.5", 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
|
@@ -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
|
|
|
@@ -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
|
|