@jskit-ai/agent-docs 0.1.1 → 0.1.2
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/package.json +1 -1
- package/templates/app/AGENTS.md +33 -0
package/package.json
CHANGED
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
# App Agent Instructions
|
|
2
|
+
|
|
3
|
+
Use this file as the app-facing instruction entrypoint.
|
|
4
|
+
|
|
5
|
+
Read these workflow files in order:
|
|
6
|
+
|
|
7
|
+
1. `node_modules/@jskit-ai/agent-docs/workflow/app-state.md`
|
|
8
|
+
2. `node_modules/@jskit-ai/agent-docs/workflow/bootstrap.md` if the workspace is empty or no JSKIT app exists yet
|
|
9
|
+
3. `node_modules/@jskit-ai/agent-docs/workflow/scoping.md`
|
|
10
|
+
4. `node_modules/@jskit-ai/agent-docs/workflow/feature-delivery.md`
|
|
11
|
+
5. `node_modules/@jskit-ai/agent-docs/workflow/review.md`
|
|
12
|
+
|
|
13
|
+
Use these references on demand:
|
|
14
|
+
|
|
15
|
+
- `node_modules/@jskit-ai/agent-docs/reference/autogen/KERNEL_MAP.md`
|
|
16
|
+
- `node_modules/@jskit-ai/agent-docs/reference/autogen/README.md`
|
|
17
|
+
- `node_modules/@jskit-ai/agent-docs/guide/agent/index.md`
|
|
18
|
+
- `node_modules/@jskit-ai/agent-docs/guide/human/index.md` when compressed guidance is ambiguous or missing nuance
|
|
19
|
+
- `node_modules/@jskit-ai/agent-docs/templates/APP_BLUEPRINT.md`
|
|
20
|
+
|
|
21
|
+
Core rules:
|
|
22
|
+
|
|
23
|
+
- Inspect the workspace before assuming a JSKIT app exists.
|
|
24
|
+
- Reuse existing JSKIT helpers and runtime seams before adding new local helpers.
|
|
25
|
+
- Do not implement app features before the blueprint has the database, surfaces, ownership model, and route/screen plan written down.
|
|
26
|
+
- Use the compressed guide first for speed; fall back to the human guide when a workflow trap, migration caveat, or architectural boundary needs exact wording.
|
|
27
|
+
- Treat generated reference maps and guide copies as vendor reference. Do not edit them manually.
|
|
28
|
+
|
|
29
|
+
If dependencies are not installed yet:
|
|
30
|
+
|
|
31
|
+
- install dependencies so `node_modules/@jskit-ai/agent-docs/` exists
|
|
32
|
+
- inspect the workspace before assuming a JSKIT app already exists
|
|
33
|
+
- if the workspace is empty and the user wants a new app, start with the initialize workflow at a high level first
|