ralph-starter 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,35 @@
1
+ # ralph-starter
2
+
3
+ > AI-powered project scaffolder for Claude Code autonomous loops. From idea to running loop in one conversation.
4
+
5
+ ## Installation
6
+
7
+ ```bash
8
+ npm install -g ralph-starter
9
+ # or
10
+ npx ralph-starter
11
+ ```
12
+
13
+ ## Features (Coming Soon)
14
+
15
+ - **`ralph-starter init`** - AI chat to define your project, suggests tech stack, generates all Ralph files
16
+ - **`ralph-starter new --template <name>`** - Create from templates (nextjs-saas, fastapi-ml, etc.)
17
+ - **`ralph-starter skill add <name>`** - Install skills from marketplace
18
+ - **`ralph-starter run [--docker]`** - Execute Claude Code loop with beautiful TUI
19
+ - **`ralph-starter docs init`** - Setup Docusaurus/VitePress documentation
20
+ - **`ralph-starter feature "<name>"`** - Create feature branch + spec + auto-PR
21
+
22
+ ## What Makes This Different
23
+
24
+ Unlike other Claude Code loop tools, ralph-starter provides:
25
+
26
+ 1. **AI-assisted ideation** - Help figure out WHAT to build through conversation
27
+ 2. **Zero-to-loop experience** - Chat → specs → running loop in minutes
28
+ 3. **Template gallery** - Pre-built starters for common project types
29
+ 4. **Skill marketplace** - Discover and install community skills
30
+ 5. **Auto-documentation** - Generate Docusaurus/VitePress docs
31
+ 6. **Docker execution** - Sandboxed, safe autonomous coding
32
+
33
+ ## License
34
+
35
+ MIT
package/dist/cli.js ADDED
@@ -0,0 +1,20 @@
1
+ #!/usr/bin/env node
2
+
3
+ console.log(`
4
+ ╭─────────────────────────────────────────────────────────────╮
5
+ │ │
6
+ │ 🚀 ralph-starter v0.0.1 │
7
+ │ │
8
+ │ AI-powered project scaffolder for Claude Code loops │
9
+ │ From idea to running loop in one conversation │
10
+ │ │
11
+ │ Coming soon: │
12
+ │ • ralph-starter init - AI chat to define project │
13
+ │ • ralph-starter new - Create from template │
14
+ │ • ralph-starter skill - Install skills │
15
+ │ • ralph-starter run - Execute the loop │
16
+ │ │
17
+ │ GitHub: https://github.com/rubenmarcus/ralph-starter │
18
+ │ │
19
+ ╰─────────────────────────────────────────────────────────────╯
20
+ `);
package/dist/index.js ADDED
@@ -0,0 +1,3 @@
1
+ // ralph-starter - AI-powered project scaffolder for Claude Code loops
2
+ export const version = '0.0.1';
3
+ export const name = 'ralph-starter';
package/package.json ADDED
@@ -0,0 +1,41 @@
1
+ {
2
+ "name": "ralph-starter",
3
+ "version": "0.0.1",
4
+ "description": "AI-powered project scaffolder for Claude Code autonomous loops. From idea to running loop in one conversation.",
5
+ "main": "dist/index.js",
6
+ "bin": {
7
+ "ralph-starter": "dist/cli.js"
8
+ },
9
+ "type": "module",
10
+ "scripts": {
11
+ "build": "tsc",
12
+ "dev": "tsc --watch",
13
+ "start": "node dist/cli.js",
14
+ "test": "vitest"
15
+ },
16
+ "keywords": [
17
+ "claude",
18
+ "claude-code",
19
+ "ai",
20
+ "scaffolding",
21
+ "project-generator",
22
+ "autonomous",
23
+ "coding",
24
+ "ralph",
25
+ "cli"
26
+ ],
27
+ "author": "Ruben Marcus <ruben@rubenmarcus.dev>",
28
+ "license": "MIT",
29
+ "repository": {
30
+ "type": "git",
31
+ "url": "https://github.com/rubenmarcus/ralph-starter"
32
+ },
33
+ "homepage": "https://github.com/rubenmarcus/ralph-starter#readme",
34
+ "engines": {
35
+ "node": ">=18.0.0"
36
+ },
37
+ "files": [
38
+ "dist",
39
+ "README.md"
40
+ ]
41
+ }