guardian-framework 0.1.9 → 0.1.10
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 +1 -1
- package/dist/exports.js +1 -1
- package/package.json +1 -1
- package/templates/pi/architecture/modules/module-template.md +3 -3
- package/templates/pi/extensions/architect-lib/generators.ts +4 -3
- package/templates/pi/extensions/architect.ts +4 -3
- package/templates/pi/preflight_report.json +1 -1
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.10", 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.10", 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
|
@@ -20,8 +20,8 @@ Generated: NEVER (this is the source)
|
|
|
20
20
|
|
|
21
21
|
| Component | File Path | Purpose | Canonical Section |
|
|
22
22
|
|-----------|-----------|---------|-------------------|
|
|
23
|
-
| [Name] | src/[
|
|
24
|
-
| [Name] | src/[
|
|
23
|
+
| [Name] | src/[module]/domain/[file].rs | [Description] | #[section] |
|
|
24
|
+
| [Name] | src/[module]/application/[file].rs | [Description] | #[section] |
|
|
25
25
|
|
|
26
26
|
---
|
|
27
27
|
|
|
@@ -31,7 +31,7 @@ Generated: NEVER (this is the source)
|
|
|
31
31
|
|
|
32
32
|
**Purpose:** [What this component does]
|
|
33
33
|
|
|
34
|
-
**Implementation File:** `src/[
|
|
34
|
+
**Implementation File:** `src/[module]/[layer]/[file].rs`
|
|
35
35
|
|
|
36
36
|
**Canonical Reference:** `.pi/architecture/modules/[module-name].md#[component-section]`
|
|
37
37
|
|
|
@@ -206,9 +206,10 @@ guardian_issue:
|
|
|
206
206
|
interfaces, types, DTOs, event schemas, API paths, error formats.
|
|
207
207
|
|
|
208
208
|
file_changes:
|
|
209
|
-
- "create: src/${moduleId}/
|
|
210
|
-
- "create: src/${moduleId}/
|
|
211
|
-
- "create: src/${moduleId}/
|
|
209
|
+
- "create: src/${moduleId}/domain/"
|
|
210
|
+
- "create: src/${moduleId}/application/"
|
|
211
|
+
- "create: src/${moduleId}/infrastructure/"
|
|
212
|
+
- "create: src/${moduleId}/interfaces/"
|
|
212
213
|
---
|
|
213
214
|
|
|
214
215
|
# Contract Freeze: ${slice.module}
|
|
@@ -892,9 +892,10 @@ guardian_issue:
|
|
|
892
892
|
interfaces, types, DTOs, event schemas, API paths, error formats.
|
|
893
893
|
|
|
894
894
|
file_changes:
|
|
895
|
-
- "create: src/${moduleId}/
|
|
896
|
-
- "create: src/${moduleId}/
|
|
897
|
-
- "create: src/${moduleId}/
|
|
895
|
+
- "create: src/${moduleId}/domain/"
|
|
896
|
+
- "create: src/${moduleId}/application/"
|
|
897
|
+
- "create: src/${moduleId}/infrastructure/"
|
|
898
|
+
- "create: src/${moduleId}/interfaces/"
|
|
898
899
|
---
|
|
899
900
|
|
|
900
901
|
# Contract Freeze: ${slice.module}
|