@craft-ts/mcp 0.7.0-beta.13
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/README.md +71 -0
- package/content/agents.md +35 -0
- package/content/best-practices.md +79 -0
- package/content/docs-index.json +658 -0
- package/dist/catalog.d.ts +27 -0
- package/dist/catalog.js +67 -0
- package/dist/catalog.js.map +1 -0
- package/dist/main.d.ts +2 -0
- package/dist/main.js +13 -0
- package/dist/main.js.map +1 -0
- package/dist/mcp-server.d.ts +3 -0
- package/dist/mcp-server.js +144 -0
- package/dist/mcp-server.js.map +1 -0
- package/dist/resources.d.ts +10 -0
- package/dist/resources.js +63 -0
- package/dist/resources.js.map +1 -0
- package/mcp.json +10 -0
- package/package.json +62 -0
- package/plugin.json +19 -0
- package/skills/craft-ts/SKILL.md +43 -0
- package/skills/craft-ts-architecture-tests/SKILL.md +110 -0
- package/skills/craft-ts-effect-v4/SKILL.md +31 -0
- package/skills/craft-ts-routes/SKILL.md +135 -0
- package/skills/craft-ts-routes/references/di-checks.md +101 -0
- package/skills/craft-ts-routes/references/eslint-workflow.md +52 -0
- package/skills/craft-ts-routes/references/pending-and-exceptions.md +93 -0
- package/skills/craft-ts-routes/references/scaling-and-pitfalls.md +111 -0
- package/skills/craft-ts-service-migration/SKILL.md +86 -0
- package/skills/migrate-to-craft-ts/SKILL.md +135 -0
- package/skills/translate-spec-to-craft-ts/SKILL.md +86 -0
- package/skills/translate-spec-to-craft-ts/references/lexical-map.md +322 -0
- package/skills/translate-spec-to-craft-ts/references/pattern-recipes.md +123 -0
- package/skills/translate-spec-to-craft-ts/references/project-index.md +52 -0
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
# Project Index
|
|
2
|
+
|
|
3
|
+
Use installed packages and published docs. Do not assume you have the CraftTS
|
|
4
|
+
monorepo checked out.
|
|
5
|
+
|
|
6
|
+
## Public API
|
|
7
|
+
|
|
8
|
+
- `node_modules/@craft-ts/core`
|
|
9
|
+
- `node_modules/@craft-ts/component`
|
|
10
|
+
|
|
11
|
+
Confirm exported symbol names there before recommending an API.
|
|
12
|
+
|
|
13
|
+
## High-value documentation
|
|
14
|
+
|
|
15
|
+
Prefer MCP `search_documentation` / `get_documentation_page`, or the markdown
|
|
16
|
+
siblings of:
|
|
17
|
+
|
|
18
|
+
- https://ng-angular-stack.github.io/craft/guide/concepts/mental-model
|
|
19
|
+
- https://ng-angular-stack.github.io/craft/guide/state/local-state
|
|
20
|
+
- https://ng-angular-stack.github.io/craft/guide/state/server-state
|
|
21
|
+
- https://ng-angular-stack.github.io/craft/guide/state/mutations
|
|
22
|
+
- https://ng-angular-stack.github.io/craft/guide/state/async-process
|
|
23
|
+
- https://ng-angular-stack.github.io/craft/guide/state/url-state
|
|
24
|
+
- https://ng-angular-stack.github.io/craft/guide/concepts/insertions
|
|
25
|
+
- https://ng-angular-stack.github.io/craft/guide/state/react-on-mutation
|
|
26
|
+
- https://ng-angular-stack.github.io/craft/guide/state/pagination-placeholder
|
|
27
|
+
- https://ng-angular-stack.github.io/craft/guide/state/collections
|
|
28
|
+
- https://ng-angular-stack.github.io/craft/guide/state/persistence
|
|
29
|
+
- https://ng-angular-stack.github.io/craft/guide/state/select
|
|
30
|
+
- https://ng-angular-stack.github.io/craft/guide/app/craft-service
|
|
31
|
+
- https://ng-angular-stack.github.io/craft/guide/app/integrate-existing
|
|
32
|
+
- https://ng-angular-stack.github.io/craft/guide/testing/services
|
|
33
|
+
- https://ng-angular-stack.github.io/craft/guide/reactivity/on
|
|
34
|
+
- https://ng-angular-stack.github.io/craft/guide/reactivity/source
|
|
35
|
+
- https://ng-angular-stack.github.io/craft/guide/forms/
|
|
36
|
+
- https://ng-angular-stack.github.io/craft/resources/examples
|
|
37
|
+
|
|
38
|
+
## Best examples
|
|
39
|
+
|
|
40
|
+
The [examples](https://ng-angular-stack.github.io/craft/resources/examples) page
|
|
41
|
+
lists the demo routes (pagination, full user management, forms). Open those
|
|
42
|
+
StackBlitz links when you need a complete composition.
|
|
43
|
+
|
|
44
|
+
MCP `find_examples` searches the same Learn + examples corpus.
|
|
45
|
+
|
|
46
|
+
## Notes
|
|
47
|
+
|
|
48
|
+
- Favor symbol names from the installed package over older or shorter doc titles.
|
|
49
|
+
- The public insertion name is `insertLocalStoragePersister`.
|
|
50
|
+
- Reach for advanced exports such as `toSource`, `computedSource`, `signalSource`,
|
|
51
|
+
`linkedSource`, `resourceById`, and `toInject` only when the request is
|
|
52
|
+
explicitly about infrastructure or source plumbing.
|