claude-prime 1.2.0 → 1.2.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 +21 -13
- package/package.json +12 -2
package/README.md
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
# claude-prime
|
|
2
2
|
|
|
3
|
-
**
|
|
3
|
+
**Open source Claude Code CLI for developers who want repeatable AI coding workflows without the setup mess.**
|
|
4
4
|
|
|
5
|
-
Claude
|
|
5
|
+
Claude Prime installs the missing layer around Claude Code: reusable skills, slash-command workflows, rules, hooks, project context, and interactive setup helpers. It is designed for the real pain points teams hit with AI coding assistants: too much manual setup, repeated prompts, inconsistent output, and poor onboarding across repositories.
|
|
6
6
|
|
|
7
7
|
## Install
|
|
8
8
|
|
|
@@ -13,34 +13,42 @@ npx claude-prime install
|
|
|
13
13
|
Install a specific version:
|
|
14
14
|
|
|
15
15
|
```bash
|
|
16
|
-
npx claude-prime install --version 1.
|
|
16
|
+
npx claude-prime install --version 1.2.0
|
|
17
17
|
```
|
|
18
18
|
|
|
19
19
|
## Commands
|
|
20
20
|
|
|
21
21
|
| Command | Description |
|
|
22
22
|
|---------|-------------|
|
|
23
|
-
| `claude-prime install` |
|
|
24
|
-
| `claude-prime init` | Configure
|
|
23
|
+
| `claude-prime install` | Download Claude Prime, install it into the current directory, and run initialization |
|
|
24
|
+
| `claude-prime init` | Configure or reconfigure an existing Claude Prime installation |
|
|
25
25
|
|
|
26
|
-
##
|
|
26
|
+
## What the CLI does
|
|
27
27
|
|
|
28
28
|
1. Downloads the latest Claude Prime release
|
|
29
|
-
2. Extracts the `.claude/`
|
|
30
|
-
3. Runs interactive setup
|
|
31
|
-
4.
|
|
29
|
+
2. Extracts the `.claude/` toolkit into your repository
|
|
30
|
+
3. Runs interactive setup for `.gitignore`, environment files, and optional MCP configuration
|
|
31
|
+
4. Lets you open Claude Code and run `/optimus-prime` to tailor the toolkit to your stack
|
|
32
|
+
|
|
33
|
+
## Why developers install it
|
|
34
|
+
|
|
35
|
+
- One-command Claude Code setup
|
|
36
|
+
- Better context engineering for real repositories
|
|
37
|
+
- Reusable workflows instead of repeated prompts
|
|
38
|
+
- More consistent AI coding output across teams
|
|
39
|
+
- Open source customization for your own standards
|
|
32
40
|
|
|
33
41
|
## Example workflows
|
|
34
42
|
|
|
35
43
|
```bash
|
|
36
|
-
# Jump straight to
|
|
44
|
+
# Jump straight to implementation
|
|
37
45
|
/cook Add user authentication with Google OAuth
|
|
38
46
|
|
|
39
47
|
# Debug and fix issues
|
|
40
48
|
/fix The checkout flow returns 500 when cart is empty
|
|
41
49
|
|
|
42
|
-
#
|
|
43
|
-
/
|
|
50
|
+
# Investigate before changing code
|
|
51
|
+
/diagnose Users randomly getting logged out on mobile
|
|
44
52
|
|
|
45
53
|
# Plan before implementing
|
|
46
54
|
/give-plan Migrate from REST to GraphQL
|
|
@@ -62,7 +70,7 @@ bash <(curl -fsSL https://raw.githubusercontent.com/avibebuilder/claude-prime/ma
|
|
|
62
70
|
## Links
|
|
63
71
|
|
|
64
72
|
- [GitHub](https://github.com/avibebuilder/claude-prime)
|
|
65
|
-
- [Full
|
|
73
|
+
- [Full README and language versions](https://github.com/avibebuilder/claude-prime#readme)
|
|
66
74
|
|
|
67
75
|
## License
|
|
68
76
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "claude-prime",
|
|
3
|
-
"version": "1.2.
|
|
4
|
-
"description": "
|
|
3
|
+
"version": "1.2.1",
|
|
4
|
+
"description": "Open source Claude Code toolkit and CLI for repeatable AI coding workflows, context engineering, skills, slash commands, and project setup",
|
|
5
5
|
"bin": {
|
|
6
6
|
"claude-prime": "./bin/cli.js"
|
|
7
7
|
},
|
|
@@ -15,7 +15,17 @@
|
|
|
15
15
|
"keywords": [
|
|
16
16
|
"claude",
|
|
17
17
|
"claude-code",
|
|
18
|
+
"claude-code-toolkit",
|
|
18
19
|
"ai",
|
|
20
|
+
"ai-coding",
|
|
21
|
+
"ai-coding-assistant",
|
|
22
|
+
"agentic-development",
|
|
23
|
+
"context-engineering",
|
|
24
|
+
"developer-tools",
|
|
25
|
+
"prompt-engineering",
|
|
26
|
+
"slash-commands",
|
|
27
|
+
"cli",
|
|
28
|
+
"open-source",
|
|
19
29
|
"agent",
|
|
20
30
|
"skills",
|
|
21
31
|
"workflows"
|