@claudeflows/cli 0.1.0 → 0.1.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/dist/index.js +1 -1
- package/package.json +10 -4
package/dist/index.js
CHANGED
|
@@ -12,7 +12,7 @@ import { registerLicense } from './commands/license.js';
|
|
|
12
12
|
const program = new Command();
|
|
13
13
|
program
|
|
14
14
|
.name('claudeflows')
|
|
15
|
-
.version('0.1.
|
|
15
|
+
.version('0.1.1')
|
|
16
16
|
.description('Claude Flows \u2014 install and manage agentic workflows');
|
|
17
17
|
registerInstall(program);
|
|
18
18
|
registerList(program);
|
package/package.json
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@claudeflows/cli",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"description": "CLI tool for installing and managing Claude Code agentic workflows",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
7
|
-
"claudeflows": "
|
|
7
|
+
"claudeflows": "bin/claudeflows.js"
|
|
8
8
|
},
|
|
9
9
|
"main": "./dist/index.js",
|
|
10
10
|
"types": "./dist/index.d.ts",
|
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
],
|
|
23
23
|
"repository": {
|
|
24
24
|
"type": "git",
|
|
25
|
-
"url": "https://github.com/mikethepurple/claudeflows"
|
|
25
|
+
"url": "git+https://github.com/mikethepurple/claudeflows.git"
|
|
26
26
|
},
|
|
27
27
|
"homepage": "https://github.com/mikethepurple/claudeflows",
|
|
28
28
|
"bugs": "https://github.com/mikethepurple/claudeflows/issues",
|
|
@@ -44,6 +44,12 @@
|
|
|
44
44
|
"engines": {
|
|
45
45
|
"node": ">=18.0.0"
|
|
46
46
|
},
|
|
47
|
-
"keywords": [
|
|
47
|
+
"keywords": [
|
|
48
|
+
"claude",
|
|
49
|
+
"workflows",
|
|
50
|
+
"agentic",
|
|
51
|
+
"marketplace",
|
|
52
|
+
"cli"
|
|
53
|
+
],
|
|
48
54
|
"license": "MIT"
|
|
49
55
|
}
|