@akanjs/cli 2.1.0-rc.9 → 2.1.1-rc.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.
Files changed (32) hide show
  1. package/README.ko.md +63 -0
  2. package/README.md +62 -0
  3. package/guidelines/componentRule/componentRule.generate.json +4 -10
  4. package/guidelines/cssRule/cssRule.generate.json +4 -10
  5. package/guidelines/docPageRule/docPageRule.generate.json +4 -10
  6. package/guidelines/docPageRule/docPageRule.instruction.md +1 -1
  7. package/guidelines/docSyncRule/docSyncRule.generate.json +4 -10
  8. package/guidelines/enumConstant/enumConstant.generate.json +4 -10
  9. package/guidelines/fieldRule/fieldRule.generate.json +4 -10
  10. package/guidelines/framework/framework.generate.json +4 -10
  11. package/guidelines/modelConstant/modelConstant.generate.json +4 -10
  12. package/guidelines/modelDictionary/modelDictionary.generate.json +4 -10
  13. package/guidelines/modelDocument/modelDocument.generate.json +4 -10
  14. package/guidelines/modelService/modelService.generate.json +4 -10
  15. package/guidelines/modelSignal/modelSignal.generate.json +4 -10
  16. package/guidelines/modelStore/modelStore.generate.json +4 -10
  17. package/guidelines/modelTemplate/modelTemplate.generate.json +4 -10
  18. package/guidelines/modelUnit/modelUnit.generate.json +4 -10
  19. package/guidelines/modelUtil/modelUtil.generate.json +4 -10
  20. package/guidelines/modelView/modelView.generate.json +4 -10
  21. package/guidelines/modelZone/modelZone.generate.json +4 -10
  22. package/guidelines/moduleCodegen/moduleCodegen.generate.json +4 -10
  23. package/guidelines/moduleOverview/moduleOverview.generate.json +4 -10
  24. package/guidelines/scalarConstant/scalarConstant.generate.json +4 -10
  25. package/guidelines/scalarDictionary/scalarDictionary.generate.json +4 -10
  26. package/guidelines/scalarModule/scalarModule.generate.json +4 -10
  27. package/guidelines/sharedUiUsage/sharedUiUsage.generate.json +4 -10
  28. package/guidelines/utilUiUsage/utilUiUsage.generate.json +4 -10
  29. package/incrementalBuilder.proc.js +237 -71
  30. package/index.js +586 -128
  31. package/package.json +3 -2
  32. package/templates/libRoot/lib/___libName__/__libName__.signal.ts +15 -0
package/README.ko.md ADDED
@@ -0,0 +1,63 @@
1
+ # @akanjs/cli
2
+
3
+ [문서](https://akanjs.com/docs) | [npm](https://www.npmjs.com/package/@akanjs/cli) | [런타임](https://www.npmjs.com/package/akanjs)
4
+
5
+ Akan.js 워크스페이스를 위한 command-line tooling입니다.
6
+
7
+ `@akanjs/cli`는 Akan 애플리케이션, 라이브러리, 프레임워크 패키지를 생성, 빌드, 테스트, 린트,
8
+ 릴리즈, 유지보수하는 데 사용하는 `akan` 실행 파일을 제공합니다. Bun-first CLI 패키지이며 Akan
9
+ 개발 tooling을 내부에 번들링하므로, 애플리케이션 런타임은 더 작은 `akanjs` 패키지에만 의존할 수
10
+ 있습니다.
11
+
12
+ ## 설치
13
+
14
+ 새 워크스페이스를 바로 만들 수 있습니다.
15
+
16
+ ```bash
17
+ bunx create-akan-workspace@latest
18
+ ```
19
+
20
+ 또는 CLI를 전역으로 설치할 수 있습니다.
21
+
22
+ ```bash
23
+ bun install -g @akanjs/cli@latest
24
+ akan --help
25
+ ```
26
+
27
+ ## 자주 쓰는 명령
28
+
29
+ ```bash
30
+ akan create-workspace <workspace-name>
31
+ akan start <app-name>
32
+ akan build <app-name>
33
+ akan test <app-or-lib-or-pkg>
34
+ akan lint <app-or-lib-or-pkg>
35
+ akan create-application <app-name>
36
+ akan create-library <lib-name>
37
+ akan create-module <module-name>
38
+ akan create-scalar <scalar-name>
39
+ ```
40
+
41
+ 패키지 유지보수 명령도 같은 실행 파일에서 제공합니다.
42
+
43
+ ```bash
44
+ akan build-package akanjs
45
+ akan build-package @akanjs/cli
46
+ akan build-package @akanjs/devkit
47
+ ```
48
+
49
+ ## 패키지 경계
50
+
51
+ - 애플리케이션과 런타임 코드는 `akanjs`를 사용합니다.
52
+ - 사용자-facing 실행 패키지는 `@akanjs/cli`입니다.
53
+ - `@akanjs/devkit`은 published CLI 사용을 위해 CLI 안에 번들링됩니다. 일반 CLI 사용자가 별도의
54
+ runtime dependency로 설치할 필요는 없습니다.
55
+
56
+ ## 요구사항
57
+
58
+ - [Bun](https://bun.sh) `>=1.3.13`
59
+ - TypeScript 기반 Akan 워크스페이스
60
+
61
+ ## 라이선스
62
+
63
+ MIT
package/README.md ADDED
@@ -0,0 +1,62 @@
1
+ # @akanjs/cli
2
+
3
+ [Docs](https://akanjs.com/docs) | [npm](https://www.npmjs.com/package/@akanjs/cli) | [Runtime](https://www.npmjs.com/package/akanjs)
4
+
5
+ Command-line tooling for Akan.js workspaces.
6
+
7
+ `@akanjs/cli` provides the `akan` executable used to create, build, test, lint, release, and maintain Akan
8
+ applications, libraries, and framework packages. It is a Bun-first CLI package and bundles Akan development
9
+ tooling internally so application runtimes can depend on the smaller `akanjs` package.
10
+
11
+ ## Install
12
+
13
+ Create a new workspace:
14
+
15
+ ```bash
16
+ bunx create-akan-workspace@latest
17
+ ```
18
+
19
+ Or install the CLI globally:
20
+
21
+ ```bash
22
+ bun install -g @akanjs/cli@latest
23
+ akan --help
24
+ ```
25
+
26
+ ## Common Commands
27
+
28
+ ```bash
29
+ akan create-workspace <workspace-name>
30
+ akan start <app-name>
31
+ akan build <app-name>
32
+ akan test <app-or-lib-or-pkg>
33
+ akan lint <app-or-lib-or-pkg>
34
+ akan create-application <app-name>
35
+ akan create-library <lib-name>
36
+ akan create-module <module-name>
37
+ akan create-scalar <scalar-name>
38
+ ```
39
+
40
+ Package maintenance commands are also exposed through the same executable:
41
+
42
+ ```bash
43
+ akan build-package akanjs
44
+ akan build-package @akanjs/cli
45
+ akan build-package @akanjs/devkit
46
+ ```
47
+
48
+ ## Package Boundary
49
+
50
+ - Use `akanjs` from application and runtime code.
51
+ - Use `@akanjs/cli` as the user-facing executable package.
52
+ - `@akanjs/devkit` is bundled into the CLI for published CLI usage; it is not required as a separate
53
+ runtime dependency for ordinary CLI users.
54
+
55
+ ## Requirements
56
+
57
+ - [Bun](https://bun.sh) `>=1.3.13`
58
+ - A TypeScript Akan workspace
59
+
60
+ ## License
61
+
62
+ MIT
@@ -2,14 +2,14 @@
2
2
  "title": "Component Rule",
3
3
  "description": "Shared component implementation rules",
4
4
  "group": "core",
5
- "docsSource": "apps/angelo/page/akanjs/(docs)/references/ui/overview.tsx",
5
+ "docsSource": "apps/akan/page/(docs)/references/ui/overview.tsx",
6
6
  "codegenPriority": 3,
7
7
  "deprecated": false,
8
8
  "scans": [
9
9
  {
10
10
  "type": "docs",
11
11
  "description": "Current docs source for Component Rule",
12
- "path": "apps/angelo/page/akanjs/(docs)/references/ui/overview.tsx"
12
+ "path": "apps/akan/page/(docs)/references/ui/overview.tsx"
13
13
  },
14
14
  {
15
15
  "type": "example",
@@ -20,18 +20,12 @@
20
20
  ],
21
21
  "update": {
22
22
  "filePath": "./componentRule.instruction.md",
23
- "contents": [
24
- "purpose",
25
- "file ownership",
26
- "current API patterns",
27
- "codegen rules",
28
- "validation checklist"
29
- ],
23
+ "contents": ["purpose", "file ownership", "current API patterns", "codegen rules", "validation checklist"],
30
24
  "rules": [
31
25
  "Use current Akan APIs only",
32
26
  "Keep output parseable for codegen",
33
27
  "Include ownership boundaries and review checklist"
34
28
  ]
35
29
  },
36
- "page": "apps/angelo/page/akanjs/(docs)/references/ui/overview.tsx"
30
+ "page": "apps/akan/page/(docs)/references/ui/overview.tsx"
37
31
  }
@@ -2,14 +2,14 @@
2
2
  "title": "CSS Rule",
3
3
  "description": "Tailwind and DaisyUI styling rules",
4
4
  "group": "core",
5
- "docsSource": "apps/angelo/page/akanjs/(docs)/docs/arch/css.tsx",
5
+ "docsSource": "apps/akan/page/(docs)/docs/arch/css.tsx",
6
6
  "codegenPriority": 3,
7
7
  "deprecated": false,
8
8
  "scans": [
9
9
  {
10
10
  "type": "docs",
11
11
  "description": "Current docs source for CSS Rule",
12
- "path": "apps/angelo/page/akanjs/(docs)/docs/arch/css.tsx"
12
+ "path": "apps/akan/page/(docs)/docs/arch/css.tsx"
13
13
  },
14
14
  {
15
15
  "type": "example",
@@ -20,18 +20,12 @@
20
20
  ],
21
21
  "update": {
22
22
  "filePath": "./cssRule.instruction.md",
23
- "contents": [
24
- "purpose",
25
- "file ownership",
26
- "current API patterns",
27
- "codegen rules",
28
- "validation checklist"
29
- ],
23
+ "contents": ["purpose", "file ownership", "current API patterns", "codegen rules", "validation checklist"],
30
24
  "rules": [
31
25
  "Use current Akan APIs only",
32
26
  "Keep output parseable for codegen",
33
27
  "Include ownership boundaries and review checklist"
34
28
  ]
35
29
  },
36
- "page": "apps/angelo/page/akanjs/(docs)/docs/arch/css.tsx"
30
+ "page": "apps/akan/page/(docs)/docs/arch/css.tsx"
37
31
  }
@@ -2,14 +2,14 @@
2
2
  "title": "Docs Page Rule",
3
3
  "description": "Docs page writing rules",
4
4
  "group": "core",
5
- "docsSource": "apps/angelo/page/akanjs/(docs)/cheatsheet/dev/docs.tsx",
5
+ "docsSource": "apps/akan/page/(docs)/cheatsheet/dev/docs.tsx",
6
6
  "codegenPriority": 3,
7
7
  "deprecated": false,
8
8
  "scans": [
9
9
  {
10
10
  "type": "docs",
11
11
  "description": "Current docs source for Docs Page Rule",
12
- "path": "apps/angelo/page/akanjs/(docs)/cheatsheet/dev/docs.tsx"
12
+ "path": "apps/akan/page/(docs)/cheatsheet/dev/docs.tsx"
13
13
  },
14
14
  {
15
15
  "type": "example",
@@ -20,18 +20,12 @@
20
20
  ],
21
21
  "update": {
22
22
  "filePath": "./docPageRule.instruction.md",
23
- "contents": [
24
- "purpose",
25
- "file ownership",
26
- "current API patterns",
27
- "codegen rules",
28
- "validation checklist"
29
- ],
23
+ "contents": ["purpose", "file ownership", "current API patterns", "codegen rules", "validation checklist"],
30
24
  "rules": [
31
25
  "Use current Akan APIs only",
32
26
  "Keep output parseable for codegen",
33
27
  "Include ownership boundaries and review checklist"
34
28
  ]
35
29
  },
36
- "page": "apps/angelo/page/akanjs/(docs)/cheatsheet/dev/docs.tsx"
30
+ "page": "apps/akan/page/(docs)/cheatsheet/dev/docs.tsx"
37
31
  }
@@ -4,7 +4,7 @@
4
4
  Use this when generating or updating Akan docs pages under the current docs route tree.
5
5
 
6
6
  ## Ownership
7
- - Docs pages live under `apps/angelo/page/akanjs/(docs)`.
7
+ - Docs pages live under `apps/akan/page/(docs)`.
8
8
  - Pages use `Docs`, `Code`, `Scroll`, and app localization helpers used by nearby pages.
9
9
  - A docs page should teach one concept with examples, alerts, and navigation anchors.
10
10
 
@@ -2,14 +2,14 @@
2
2
  "title": "Docs Sync Rule",
3
3
  "description": "Docs to guideline sync rules",
4
4
  "group": "core",
5
- "docsSource": "apps/angelo/page/akanjs/(docs)/docs/_index.tsx",
5
+ "docsSource": "apps/akan/page/(docs)/docs/_index.tsx",
6
6
  "codegenPriority": 3,
7
7
  "deprecated": false,
8
8
  "scans": [
9
9
  {
10
10
  "type": "docs",
11
11
  "description": "Current docs source for Docs Sync Rule",
12
- "path": "apps/angelo/page/akanjs/(docs)/docs/_index.tsx"
12
+ "path": "apps/akan/page/(docs)/docs/_index.tsx"
13
13
  },
14
14
  {
15
15
  "type": "example",
@@ -20,18 +20,12 @@
20
20
  ],
21
21
  "update": {
22
22
  "filePath": "./docSyncRule.instruction.md",
23
- "contents": [
24
- "purpose",
25
- "file ownership",
26
- "current API patterns",
27
- "codegen rules",
28
- "validation checklist"
29
- ],
23
+ "contents": ["purpose", "file ownership", "current API patterns", "codegen rules", "validation checklist"],
30
24
  "rules": [
31
25
  "Use current Akan APIs only",
32
26
  "Keep output parseable for codegen",
33
27
  "Include ownership boundaries and review checklist"
34
28
  ]
35
29
  },
36
- "page": "apps/angelo/page/akanjs/(docs)/docs/_index.tsx"
30
+ "page": "apps/akan/page/(docs)/docs/_index.tsx"
37
31
  }
@@ -2,14 +2,14 @@
2
2
  "title": "Enum Constant",
3
3
  "description": "enumOf category value rules",
4
4
  "group": "core",
5
- "docsSource": "apps/angelo/page/akanjs/(docs)/conventions/module/constant.tsx",
5
+ "docsSource": "apps/akan/page/(docs)/conventions/module/constant.tsx",
6
6
  "codegenPriority": 2,
7
7
  "deprecated": false,
8
8
  "scans": [
9
9
  {
10
10
  "type": "docs",
11
11
  "description": "Current docs source for Enum Constant",
12
- "path": "apps/angelo/page/akanjs/(docs)/conventions/module/constant.tsx"
12
+ "path": "apps/akan/page/(docs)/conventions/module/constant.tsx"
13
13
  },
14
14
  {
15
15
  "type": "example",
@@ -20,18 +20,12 @@
20
20
  ],
21
21
  "update": {
22
22
  "filePath": "./enumConstant.instruction.md",
23
- "contents": [
24
- "purpose",
25
- "file ownership",
26
- "current API patterns",
27
- "codegen rules",
28
- "validation checklist"
29
- ],
23
+ "contents": ["purpose", "file ownership", "current API patterns", "codegen rules", "validation checklist"],
30
24
  "rules": [
31
25
  "Use current Akan APIs only",
32
26
  "Keep output parseable for codegen",
33
27
  "Include ownership boundaries and review checklist"
34
28
  ]
35
29
  },
36
- "page": "apps/angelo/page/akanjs/(docs)/conventions/module/constant.tsx"
30
+ "page": "apps/akan/page/(docs)/conventions/module/constant.tsx"
37
31
  }
@@ -2,14 +2,14 @@
2
2
  "title": "Field Rule",
3
3
  "description": "Current via field helper rules",
4
4
  "group": "core",
5
- "docsSource": "apps/angelo/page/akanjs/(docs)/conventions/module/constant.tsx",
5
+ "docsSource": "apps/akan/page/(docs)/conventions/module/constant.tsx",
6
6
  "codegenPriority": 1,
7
7
  "deprecated": false,
8
8
  "scans": [
9
9
  {
10
10
  "type": "docs",
11
11
  "description": "Current docs source for Field Rule",
12
- "path": "apps/angelo/page/akanjs/(docs)/conventions/module/constant.tsx"
12
+ "path": "apps/akan/page/(docs)/conventions/module/constant.tsx"
13
13
  },
14
14
  {
15
15
  "type": "example",
@@ -20,18 +20,12 @@
20
20
  ],
21
21
  "update": {
22
22
  "filePath": "./fieldRule.instruction.md",
23
- "contents": [
24
- "purpose",
25
- "file ownership",
26
- "current API patterns",
27
- "codegen rules",
28
- "validation checklist"
29
- ],
23
+ "contents": ["purpose", "file ownership", "current API patterns", "codegen rules", "validation checklist"],
30
24
  "rules": [
31
25
  "Use current Akan APIs only",
32
26
  "Keep output parseable for codegen",
33
27
  "Include ownership boundaries and review checklist"
34
28
  ]
35
29
  },
36
- "page": "apps/angelo/page/akanjs/(docs)/conventions/module/constant.tsx"
30
+ "page": "apps/akan/page/(docs)/conventions/module/constant.tsx"
37
31
  }
@@ -2,14 +2,14 @@
2
2
  "title": "Akan.js Framework",
3
3
  "description": "Compact global context for Akan AI codegen",
4
4
  "group": "core",
5
- "docsSource": "apps/angelo/page/akanjs/(docs)/docs/intro/fundamentals.tsx",
5
+ "docsSource": "apps/akan/page/(docs)/docs/intro/fundamentals.tsx",
6
6
  "codegenPriority": 1,
7
7
  "deprecated": false,
8
8
  "scans": [
9
9
  {
10
10
  "type": "docs",
11
11
  "description": "Current docs source for Akan.js Framework",
12
- "path": "apps/angelo/page/akanjs/(docs)/docs/intro/fundamentals.tsx"
12
+ "path": "apps/akan/page/(docs)/docs/intro/fundamentals.tsx"
13
13
  },
14
14
  {
15
15
  "type": "example",
@@ -20,18 +20,12 @@
20
20
  ],
21
21
  "update": {
22
22
  "filePath": "./framework.instruction.md",
23
- "contents": [
24
- "purpose",
25
- "file ownership",
26
- "current API patterns",
27
- "codegen rules",
28
- "validation checklist"
29
- ],
23
+ "contents": ["purpose", "file ownership", "current API patterns", "codegen rules", "validation checklist"],
30
24
  "rules": [
31
25
  "Use current Akan APIs only",
32
26
  "Keep output parseable for codegen",
33
27
  "Include ownership boundaries and review checklist"
34
28
  ]
35
29
  },
36
- "page": "apps/angelo/page/akanjs/(docs)/docs/intro/fundamentals.tsx"
30
+ "page": "apps/akan/page/(docs)/docs/intro/fundamentals.tsx"
37
31
  }
@@ -2,14 +2,14 @@
2
2
  "title": "Model Constant",
3
3
  "description": "Module constant generation rules",
4
4
  "group": "module",
5
- "docsSource": "apps/angelo/page/akanjs/(docs)/conventions/module/constant.tsx",
5
+ "docsSource": "apps/akan/page/(docs)/conventions/module/constant.tsx",
6
6
  "codegenPriority": 1,
7
7
  "deprecated": false,
8
8
  "scans": [
9
9
  {
10
10
  "type": "docs",
11
11
  "description": "Current docs source for Model Constant",
12
- "path": "apps/angelo/page/akanjs/(docs)/conventions/module/constant.tsx"
12
+ "path": "apps/akan/page/(docs)/conventions/module/constant.tsx"
13
13
  },
14
14
  {
15
15
  "type": "example",
@@ -20,18 +20,12 @@
20
20
  ],
21
21
  "update": {
22
22
  "filePath": "./modelConstant.instruction.md",
23
- "contents": [
24
- "purpose",
25
- "file ownership",
26
- "current API patterns",
27
- "codegen rules",
28
- "validation checklist"
29
- ],
23
+ "contents": ["purpose", "file ownership", "current API patterns", "codegen rules", "validation checklist"],
30
24
  "rules": [
31
25
  "Use current Akan APIs only",
32
26
  "Keep output parseable for codegen",
33
27
  "Include ownership boundaries and review checklist"
34
28
  ]
35
29
  },
36
- "page": "apps/angelo/page/akanjs/(docs)/conventions/module/constant.tsx"
30
+ "page": "apps/akan/page/(docs)/conventions/module/constant.tsx"
37
31
  }
@@ -2,14 +2,14 @@
2
2
  "title": "Model Dictionary",
3
3
  "description": "Module dictionary generation rules",
4
4
  "group": "module",
5
- "docsSource": "apps/angelo/page/akanjs/(docs)/conventions/module/dictionary.tsx",
5
+ "docsSource": "apps/akan/page/(docs)/conventions/module/dictionary.tsx",
6
6
  "codegenPriority": 1,
7
7
  "deprecated": false,
8
8
  "scans": [
9
9
  {
10
10
  "type": "docs",
11
11
  "description": "Current docs source for Model Dictionary",
12
- "path": "apps/angelo/page/akanjs/(docs)/conventions/module/dictionary.tsx"
12
+ "path": "apps/akan/page/(docs)/conventions/module/dictionary.tsx"
13
13
  },
14
14
  {
15
15
  "type": "example",
@@ -20,18 +20,12 @@
20
20
  ],
21
21
  "update": {
22
22
  "filePath": "./modelDictionary.instruction.md",
23
- "contents": [
24
- "purpose",
25
- "file ownership",
26
- "current API patterns",
27
- "codegen rules",
28
- "validation checklist"
29
- ],
23
+ "contents": ["purpose", "file ownership", "current API patterns", "codegen rules", "validation checklist"],
30
24
  "rules": [
31
25
  "Use current Akan APIs only",
32
26
  "Keep output parseable for codegen",
33
27
  "Include ownership boundaries and review checklist"
34
28
  ]
35
29
  },
36
- "page": "apps/angelo/page/akanjs/(docs)/conventions/module/dictionary.tsx"
30
+ "page": "apps/akan/page/(docs)/conventions/module/dictionary.tsx"
37
31
  }
@@ -2,14 +2,14 @@
2
2
  "title": "Model Document",
3
3
  "description": "Module persistence generation rules",
4
4
  "group": "module",
5
- "docsSource": "apps/angelo/page/akanjs/(docs)/conventions/module/document.tsx",
5
+ "docsSource": "apps/akan/page/(docs)/conventions/module/document.tsx",
6
6
  "codegenPriority": 1,
7
7
  "deprecated": false,
8
8
  "scans": [
9
9
  {
10
10
  "type": "docs",
11
11
  "description": "Current docs source for Model Document",
12
- "path": "apps/angelo/page/akanjs/(docs)/conventions/module/document.tsx"
12
+ "path": "apps/akan/page/(docs)/conventions/module/document.tsx"
13
13
  },
14
14
  {
15
15
  "type": "example",
@@ -20,18 +20,12 @@
20
20
  ],
21
21
  "update": {
22
22
  "filePath": "./modelDocument.instruction.md",
23
- "contents": [
24
- "purpose",
25
- "file ownership",
26
- "current API patterns",
27
- "codegen rules",
28
- "validation checklist"
29
- ],
23
+ "contents": ["purpose", "file ownership", "current API patterns", "codegen rules", "validation checklist"],
30
24
  "rules": [
31
25
  "Use current Akan APIs only",
32
26
  "Keep output parseable for codegen",
33
27
  "Include ownership boundaries and review checklist"
34
28
  ]
35
29
  },
36
- "page": "apps/angelo/page/akanjs/(docs)/conventions/module/document.tsx"
30
+ "page": "apps/akan/page/(docs)/conventions/module/document.tsx"
37
31
  }
@@ -2,14 +2,14 @@
2
2
  "title": "Model Service",
3
3
  "description": "Module service generation rules",
4
4
  "group": "module",
5
- "docsSource": "apps/angelo/page/akanjs/(docs)/conventions/module/service.tsx",
5
+ "docsSource": "apps/akan/page/(docs)/conventions/module/service.tsx",
6
6
  "codegenPriority": 2,
7
7
  "deprecated": false,
8
8
  "scans": [
9
9
  {
10
10
  "type": "docs",
11
11
  "description": "Current docs source for Model Service",
12
- "path": "apps/angelo/page/akanjs/(docs)/conventions/module/service.tsx"
12
+ "path": "apps/akan/page/(docs)/conventions/module/service.tsx"
13
13
  },
14
14
  {
15
15
  "type": "example",
@@ -20,18 +20,12 @@
20
20
  ],
21
21
  "update": {
22
22
  "filePath": "./modelService.instruction.md",
23
- "contents": [
24
- "purpose",
25
- "file ownership",
26
- "current API patterns",
27
- "codegen rules",
28
- "validation checklist"
29
- ],
23
+ "contents": ["purpose", "file ownership", "current API patterns", "codegen rules", "validation checklist"],
30
24
  "rules": [
31
25
  "Use current Akan APIs only",
32
26
  "Keep output parseable for codegen",
33
27
  "Include ownership boundaries and review checklist"
34
28
  ]
35
29
  },
36
- "page": "apps/angelo/page/akanjs/(docs)/conventions/module/service.tsx"
30
+ "page": "apps/akan/page/(docs)/conventions/module/service.tsx"
37
31
  }
@@ -2,14 +2,14 @@
2
2
  "title": "Model Signal",
3
3
  "description": "Module signal generation rules",
4
4
  "group": "module",
5
- "docsSource": "apps/angelo/page/akanjs/(docs)/conventions/module/signal.tsx",
5
+ "docsSource": "apps/akan/page/(docs)/conventions/module/signal.tsx",
6
6
  "codegenPriority": 2,
7
7
  "deprecated": false,
8
8
  "scans": [
9
9
  {
10
10
  "type": "docs",
11
11
  "description": "Current docs source for Model Signal",
12
- "path": "apps/angelo/page/akanjs/(docs)/conventions/module/signal.tsx"
12
+ "path": "apps/akan/page/(docs)/conventions/module/signal.tsx"
13
13
  },
14
14
  {
15
15
  "type": "example",
@@ -20,18 +20,12 @@
20
20
  ],
21
21
  "update": {
22
22
  "filePath": "./modelSignal.instruction.md",
23
- "contents": [
24
- "purpose",
25
- "file ownership",
26
- "current API patterns",
27
- "codegen rules",
28
- "validation checklist"
29
- ],
23
+ "contents": ["purpose", "file ownership", "current API patterns", "codegen rules", "validation checklist"],
30
24
  "rules": [
31
25
  "Use current Akan APIs only",
32
26
  "Keep output parseable for codegen",
33
27
  "Include ownership boundaries and review checklist"
34
28
  ]
35
29
  },
36
- "page": "apps/angelo/page/akanjs/(docs)/conventions/module/signal.tsx"
30
+ "page": "apps/akan/page/(docs)/conventions/module/signal.tsx"
37
31
  }
@@ -2,14 +2,14 @@
2
2
  "title": "Model Store",
3
3
  "description": "Module store generation rules",
4
4
  "group": "module",
5
- "docsSource": "apps/angelo/page/akanjs/(docs)/conventions/module/store.tsx",
5
+ "docsSource": "apps/akan/page/(docs)/conventions/module/store.tsx",
6
6
  "codegenPriority": 2,
7
7
  "deprecated": false,
8
8
  "scans": [
9
9
  {
10
10
  "type": "docs",
11
11
  "description": "Current docs source for Model Store",
12
- "path": "apps/angelo/page/akanjs/(docs)/conventions/module/store.tsx"
12
+ "path": "apps/akan/page/(docs)/conventions/module/store.tsx"
13
13
  },
14
14
  {
15
15
  "type": "example",
@@ -20,18 +20,12 @@
20
20
  ],
21
21
  "update": {
22
22
  "filePath": "./modelStore.instruction.md",
23
- "contents": [
24
- "purpose",
25
- "file ownership",
26
- "current API patterns",
27
- "codegen rules",
28
- "validation checklist"
29
- ],
23
+ "contents": ["purpose", "file ownership", "current API patterns", "codegen rules", "validation checklist"],
30
24
  "rules": [
31
25
  "Use current Akan APIs only",
32
26
  "Keep output parseable for codegen",
33
27
  "Include ownership boundaries and review checklist"
34
28
  ]
35
29
  },
36
- "page": "apps/angelo/page/akanjs/(docs)/conventions/module/store.tsx"
30
+ "page": "apps/akan/page/(docs)/conventions/module/store.tsx"
37
31
  }