@jskit-ai/create-app 0.1.90 → 0.1.92
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
CHANGED
package/src/server/index.js
CHANGED
|
@@ -631,7 +631,7 @@ export async function runCli(
|
|
|
631
631
|
stdout.write("Next steps:\n");
|
|
632
632
|
stdout.write(`- cd ${shellQuote(targetLabel)}\n`);
|
|
633
633
|
if (isAiSeedTemplate) {
|
|
634
|
-
stdout.write("-
|
|
634
|
+
stdout.write("- follow the generated AGENTS.md after the real scaffold exists\n");
|
|
635
635
|
stdout.write(
|
|
636
636
|
`- once the Stage 1 shape is clear, let it run npx @jskit-ai/create-app ${shellQuote(result.appName)} --target . --force --tenancy-mode <mode>\n`
|
|
637
637
|
);
|
|
@@ -9,4 +9,4 @@ Keep this stage minimal:
|
|
|
9
9
|
- Run `npm install`.
|
|
10
10
|
- If local JSKIT checkout links are used, run `npm run devlinks` immediately afterward.
|
|
11
11
|
|
|
12
|
-
After the real scaffold exists,
|
|
12
|
+
After the real scaffold exists, follow the generated app `AGENTS.md` and JSKIT agent docs. Do not continue from this seed file as a workflow source of truth.
|
|
@@ -1,11 +1,10 @@
|
|
|
1
1
|
# App Agent Instructions
|
|
2
2
|
|
|
3
|
-
Use JSKIT
|
|
3
|
+
Use the JSKIT agent docs and the local app scaffold as the source of truth for app work.
|
|
4
4
|
|
|
5
|
-
|
|
6
|
-
- `jskit session create`
|
|
7
|
-
- `jskit session <session_id>`
|
|
8
|
-
- `jskit session <session_id> step`
|
|
9
|
-
- `jskit session <session_id> step --json` for tools and UIs
|
|
5
|
+
Recommended references:
|
|
10
6
|
|
|
11
|
-
|
|
7
|
+
- `node_modules/@jskit-ai/agent-docs/guide/agent/index.md`
|
|
8
|
+
- `node_modules/@jskit-ai/agent-docs/patterns/INDEX.md`
|
|
9
|
+
|
|
10
|
+
Keep changes scoped to the user request and verify runtime behavior with tests or explicit checks.
|