@elixpo/claudeops 1.0.0 → 1.0.2
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 +14 -12
- package/lib/init.js +1 -1
- package/package.json +20 -8
- /package/{bin → scripts}/handover.sh +0 -0
- /package/{bin → scripts}/loopcheck.sh +0 -0
- /package/{bin → scripts}/onboard.sh +0 -0
- /package/{bin → scripts}/orphan.sh +0 -0
- /package/{bin → scripts}/resume.sh +0 -0
- /package/{bin → scripts}/wiring.sh +0 -0
package/README.md
CHANGED
|
@@ -1,14 +1,15 @@
|
|
|
1
1
|
<p align="center">
|
|
2
|
-
<img src="public/logo.png" alt="ClaudeOps" width="120" />
|
|
2
|
+
<img src="https://raw.githubusercontent.com/elixpo/claudeOps.elixpo/main/public/logo.png" alt="ClaudeOps" width="120" />
|
|
3
3
|
<h1 align="center">ClaudeOps</h1>
|
|
4
4
|
<p align="center">
|
|
5
|
-
<strong>
|
|
6
|
-
|
|
5
|
+
<strong>Make Claude Code actually work like a senior engineer.</strong><br/>
|
|
6
|
+
Drop-in agents, automatic token compression, safety hooks, and a UI design pipeline — one command to install.
|
|
7
7
|
</p>
|
|
8
8
|
<p align="center">
|
|
9
|
-
<a href="
|
|
9
|
+
<a href="https://www.npmjs.com/package/@elixpo/claudeops"><img src="https://img.shields.io/npm/v/@elixpo/claudeops?style=flat-square&color=cb3837" alt="npm"></a>
|
|
10
|
+
<a href="https://www.npmjs.com/package/@elixpo/claudeops"><img src="https://img.shields.io/npm/dm/@elixpo/claudeops?style=flat-square" alt="Downloads"></a>
|
|
11
|
+
<a href="https://github.com/elixpo/claudeOps.elixpo/stargazers"><img src="https://img.shields.io/github/stars/elixpo/claudeOps.elixpo?style=flat-square&color=gold" alt="Stars"></a>
|
|
10
12
|
<a href="LICENSE"><img src="https://img.shields.io/badge/license-MIT-blue?style=flat-square" alt="License"></a>
|
|
11
|
-
<a href="https://github.com/elixpo/claudeops/stargazers"><img src="https://img.shields.io/github/stars/elixpo/claudeops?style=flat-square&color=gold" alt="Stars"></a>
|
|
12
13
|
<img src="https://img.shields.io/badge/platform-Windows%20%7C%20macOS%20%7C%20Linux-lightgrey?style=flat-square" alt="Platform">
|
|
13
14
|
</p>
|
|
14
15
|
</p>
|
|
@@ -24,7 +25,7 @@ ClaudeOps fixes that. It's a set of config files, agents, and hooks that drop in
|
|
|
24
25
|
---
|
|
25
26
|
|
|
26
27
|
<p align="center">
|
|
27
|
-
<img src="public/banner.png" alt="ClaudeOps" width="100%" />
|
|
28
|
+
<img src="https://raw.githubusercontent.com/elixpo/claudeOps.elixpo/main/public/banner.png" alt="ClaudeOps" width="100%" />
|
|
28
29
|
</p>
|
|
29
30
|
|
|
30
31
|
---
|
|
@@ -171,18 +172,19 @@ PRs welcome. Areas where help is needed:
|
|
|
171
172
|
- Benchmarks comparing with/without ClaudeOps
|
|
172
173
|
- Platform-specific install improvements
|
|
173
174
|
|
|
174
|
-
|
|
175
|
+
<br>
|
|
175
176
|
|
|
176
|
-
|
|
177
|
+
---
|
|
177
178
|
|
|
178
179
|
<p align="center">
|
|
179
|
-
|
|
180
|
+
Built with ❤️ and maintained by <a href="https://github.com/elixpo">@elixpo</a>
|
|
180
181
|
</p>
|
|
181
182
|
|
|
183
|
+
|
|
182
184
|
<picture>
|
|
183
|
-
<source media="(prefers-color-scheme: dark)" srcset="https://raw.githubusercontent.com/elixpo/
|
|
184
|
-
<source media="(prefers-color-scheme: light)" srcset="https://raw.githubusercontent.com/elixpo/
|
|
185
|
-
<img alt="github-snake" src="https://raw.githubusercontent.com/elixpo/
|
|
185
|
+
<source media="(prefers-color-scheme: dark)" srcset="https://raw.githubusercontent.com/elixpo/claudeOps.elixpo/output/github-contribution-grid-snake-dark.svg" />
|
|
186
|
+
<source media="(prefers-color-scheme: light)" srcset="https://raw.githubusercontent.com/elixpo/claudeOps.elixpo/output/github-contribution-grid-snake.svg" />
|
|
187
|
+
<img alt="github-snake" src="https://raw.githubusercontent.com/elixpo/claudeOps.elixpo/output/github-contribution-grid-snake-dark.svg" />
|
|
186
188
|
</picture>
|
|
187
189
|
|
|
188
190
|
<img width="100%" src="https://capsule-render.vercel.app/api?type=waving&color=gradient&customColorList=6,11,20&height=170§ion=footer&animation=twinkling" />
|
package/lib/init.js
CHANGED
|
@@ -65,7 +65,7 @@ async function init() {
|
|
|
65
65
|
|
|
66
66
|
// Copy bin scripts
|
|
67
67
|
ensureDir(BIN_DIR);
|
|
68
|
-
const binCount = copyDir(path.join(PKG_ROOT, '
|
|
68
|
+
const binCount = copyDir(path.join(PKG_ROOT, 'scripts'), BIN_DIR);
|
|
69
69
|
|
|
70
70
|
// Make them executable
|
|
71
71
|
for (const f of fs.readdirSync(BIN_DIR)) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@elixpo/claudeops",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.2",
|
|
4
4
|
"description": "Drop-in optimization toolkit for Claude Code — 15 agents, token savings, safety hooks, UI pipeline",
|
|
5
5
|
"bin": {
|
|
6
6
|
"claudeops": "./cli.js"
|
|
@@ -11,25 +11,37 @@
|
|
|
11
11
|
"agents/",
|
|
12
12
|
"hooks/",
|
|
13
13
|
"config/",
|
|
14
|
-
"
|
|
14
|
+
"scripts/"
|
|
15
15
|
],
|
|
16
16
|
"keywords": [
|
|
17
17
|
"claude",
|
|
18
18
|
"claude-code",
|
|
19
|
-
"
|
|
20
|
-
"
|
|
19
|
+
"claude-agents",
|
|
20
|
+
"claude-mcp",
|
|
21
|
+
"claude-hooks",
|
|
22
|
+
"ai-agents",
|
|
23
|
+
"ai-coding",
|
|
24
|
+
"ai-tools",
|
|
25
|
+
"mcp-server",
|
|
21
26
|
"mcp",
|
|
22
27
|
"optimization",
|
|
23
28
|
"token-savings",
|
|
24
|
-
"
|
|
29
|
+
"code-review",
|
|
30
|
+
"devtools",
|
|
31
|
+
"developer-tools",
|
|
32
|
+
"cli",
|
|
33
|
+
"automation",
|
|
34
|
+
"llm",
|
|
35
|
+
"agentic",
|
|
36
|
+
"vibe-coding"
|
|
25
37
|
],
|
|
26
|
-
"author"
|
|
38
|
+
"author": "Ayushman Bhattacharya <ayushman@myceli.ai>",
|
|
27
39
|
"license": "MIT",
|
|
28
40
|
"repository": {
|
|
29
41
|
"type": "git",
|
|
30
|
-
"url": "https://github.com/elixpo/
|
|
42
|
+
"url": "https://github.com/elixpo/claudeOps.elixpo.git"
|
|
31
43
|
},
|
|
32
|
-
"homepage": "https://github.com/elixpo/
|
|
44
|
+
"homepage": "https://github.com/elixpo/claudeOps.elixpo",
|
|
33
45
|
"engines": {
|
|
34
46
|
"node": ">=20"
|
|
35
47
|
}
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|