crewforth 0.0.1

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 ADDED
@@ -0,0 +1,12 @@
1
+ # Crewforth
2
+
3
+ **Your engineering crew for Claude Code.** From first idea to production — 12 specialists, gates that hold.
4
+
5
+ Crewforth is the new name of **Claude Starter Kit**. Until the rename ships, this package forwards to it:
6
+
7
+ ```bash
8
+ npx crewforth # new project — setup wizard
9
+ npx crewforth adopt # existing project — handover on a branch
10
+ ```
11
+
12
+ Source and docs: https://github.com/byerlikaya/claude-starter-kit · MIT
@@ -0,0 +1,10 @@
1
+ #!/usr/bin/env node
2
+ // Crewforth is the new name of Claude Starter Kit. Until the rename ships, this forwards every
3
+ // argument to the current package, so `npx crewforth` and `npx crewforth adopt` already work.
4
+ const { spawnSync } = require('child_process');
5
+ const win = process.platform === 'win32';
6
+ const r = spawnSync(win ? 'npx.cmd' : 'npx',
7
+ ['--yes', '@byerlikaya/claude-starter-kit@latest', ...process.argv.slice(2)],
8
+ { stdio: 'inherit', shell: win });
9
+ if (r.error) { console.error(`crewforth: could not start npx (${r.error.message})`); process.exit(1); }
10
+ process.exit(r.status === null ? 1 : r.status);
package/package.json ADDED
@@ -0,0 +1,13 @@
1
+ {
2
+ "name": "crewforth",
3
+ "version": "0.0.1",
4
+ "description": "Your engineering crew for Claude Code — the new name of Claude Starter Kit. This release forwards to it until the rename ships.",
5
+ "bin": { "crewforth": "bin/crewforth.js" },
6
+ "files": ["bin/", "README.md"],
7
+ "engines": { "node": ">=16.7" },
8
+ "license": "MIT",
9
+ "author": "Barış Yerlikaya",
10
+ "homepage": "https://github.com/byerlikaya/claude-starter-kit",
11
+ "repository": { "type": "git", "url": "git+https://github.com/byerlikaya/claude-starter-kit.git" },
12
+ "keywords": ["claude-code", "claude", "agents", "skills", "agentic-workflow", "crewforth"]
13
+ }