create-objectstack 16.0.0-rc.1 → 16.1.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.
package/README.md CHANGED
@@ -59,7 +59,7 @@ offline.
59
59
  (`blank_note` → `my_app_note`).
60
60
  2. Installs dependencies (pnpm if available, otherwise npm).
61
61
  3. Installs the ObjectStack AI skills bundle for coding agents
62
- (`npx skills add objectstack-ai/framework/skills --all` — scoped to the
62
+ (`npx skills add objectstack-ai/objectstack/skills --all` — scoped to the
63
63
  curated `skills/` catalog).
64
64
  4. Writes `AGENTS.md` and `.github/copilot-instructions.md` with the project
65
65
  conventions — unless the template ships its own.
package/dist/index.js CHANGED
@@ -350,14 +350,14 @@ var program = new Command().name("create-objectstack").description("Create a new
350
350
  if (!options.skipInstall && !options.skipSkills) {
351
351
  printStep("Installing AI skills for your coding agent...");
352
352
  try {
353
- execSync("npx -y skills add objectstack-ai/framework/skills --all", {
353
+ execSync("npx -y skills add objectstack-ai/objectstack/skills --all", {
354
354
  stdio: "inherit",
355
355
  cwd: targetDir
356
356
  });
357
357
  console.log("");
358
358
  } catch {
359
359
  printWarning(
360
- "Skills installation skipped. Run manually:\n npx skills add objectstack-ai/framework/skills"
360
+ "Skills installation skipped. Run manually:\n npx skills add objectstack-ai/objectstack/skills"
361
361
  );
362
362
  console.log("");
363
363
  }
@@ -377,7 +377,7 @@ var program = new Command().name("create-objectstack").description("Create a new
377
377
  if (options.skipInstall || options.skipSkills) {
378
378
  console.log("");
379
379
  console.log(chalk.bold(" AI Skills (recommended):"));
380
- console.log(chalk.dim(" npx skills add objectstack-ai/framework/skills"));
380
+ console.log(chalk.dim(" npx skills add objectstack-ai/objectstack/skills"));
381
381
  }
382
382
  console.log("");
383
383
  } catch (error) {
@@ -73,11 +73,11 @@ Run `npm run build` when you need the compiled `dist/objectstack.json` artifact.
73
73
 
74
74
  ## AI Skills
75
75
 
76
- This project uses ObjectStack skills from `objectstack-ai/framework`.
76
+ This project uses ObjectStack skills from `objectstack-ai/objectstack`.
77
77
  Install or update skills with the standard [skills CLI](https://skills.sh/):
78
78
 
79
79
  ```bash
80
- npx skills add objectstack-ai/framework/skills
80
+ npx skills add objectstack-ai/objectstack/skills
81
81
  ```
82
82
 
83
83
  Skills are triggered automatically based on task context:
@@ -97,5 +97,5 @@ Skills are triggered automatically based on task context:
97
97
  ## Learn More
98
98
 
99
99
  - [ObjectStack Documentation](https://objectstack.com/docs)
100
- - [GitHub: objectstack-ai/framework](https://github.com/objectstack-ai/framework)
100
+ - [GitHub: objectstack-ai/objectstack](https://github.com/objectstack-ai/objectstack)
101
101
  - [Skills CLI](https://skills.sh/) — Manage AI skills across agents
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-objectstack",
3
- "version": "16.0.0-rc.1",
3
+ "version": "16.1.0",
4
4
  "description": "Create a new ObjectStack project — npx create-objectstack",
5
5
  "bin": {
6
6
  "create-objectstack": "./bin/create-objectstack.js"
@@ -21,18 +21,17 @@
21
21
  },
22
22
  "devDependencies": {
23
23
  "@types/node": "^26.1.1",
24
- "@types/tar": "^7.0.87",
25
24
  "tsup": "^8.5.1",
26
25
  "typescript": "^6.0.3",
27
26
  "vitest": "^4.1.10"
28
27
  },
29
28
  "repository": {
30
29
  "type": "git",
31
- "url": "https://github.com/objectstack-ai/framework.git",
30
+ "url": "https://github.com/objectstack-ai/objectstack.git",
32
31
  "directory": "packages/create-objectstack"
33
32
  },
34
33
  "homepage": "https://objectstack.ai/docs",
35
- "bugs": "https://github.com/objectstack-ai/framework/issues",
34
+ "bugs": "https://github.com/objectstack-ai/objectstack/issues",
36
35
  "publishConfig": {
37
36
  "access": "public"
38
37
  },