@feng-h/pdca-skill 1.0.4 → 1.0.5
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/bin/pdca.js +41 -0
- package/package.json +8 -5
package/bin/pdca.js
ADDED
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
|
|
3
|
+
console.log(`
|
|
4
|
+
╔══════════════════════════════════════════════════════════════╗
|
|
5
|
+
║ ║
|
|
6
|
+
║ 🚀 PDCA with AI - AI-Driven Project Management System ║
|
|
7
|
+
║ ║
|
|
8
|
+
╚══════════════════════════════════════════════════════════════╝
|
|
9
|
+
|
|
10
|
+
📦 Installation
|
|
11
|
+
────────────────────────────────────────────────────────────────
|
|
12
|
+
|
|
13
|
+
This is a documentation skill package for AI CLI tools.
|
|
14
|
+
|
|
15
|
+
Install via Gemini CLI / OpenClaw:
|
|
16
|
+
|
|
17
|
+
gemini skills install https://github.com/Feng-H/PDCA-with-AI.git
|
|
18
|
+
|
|
19
|
+
Or via skills framework:
|
|
20
|
+
|
|
21
|
+
npx skills add Feng-H/PDCA-with-AI
|
|
22
|
+
|
|
23
|
+
📚 Documentation
|
|
24
|
+
────────────────────────────────────────────────────────────────
|
|
25
|
+
|
|
26
|
+
• GitHub: https://github.com/Feng-H/PDCA-with-AI
|
|
27
|
+
• npm: https://www.npmjs.com/package/@feng-h/pdca-skill
|
|
28
|
+
|
|
29
|
+
📖 Usage
|
|
30
|
+
────────────────────────────────────────────────────────────────
|
|
31
|
+
|
|
32
|
+
Once installed in your AI CLI, use these commands:
|
|
33
|
+
|
|
34
|
+
new - Start a new PDCA project
|
|
35
|
+
ongoing - View active project dashboard
|
|
36
|
+
achieve - Search historical success cases
|
|
37
|
+
|
|
38
|
+
────────────────────────────────────────────────────────────────
|
|
39
|
+
Powered by AI | 让 PDCA 循环真正「转」起来!
|
|
40
|
+
────────────────────────────────────────────────────────────────
|
|
41
|
+
`);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@feng-h/pdca-skill",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.5",
|
|
4
4
|
"description": "PDCA project management system for Feishu/Lark integration with AI-driven workflow",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"skills",
|
|
@@ -21,6 +21,9 @@
|
|
|
21
21
|
"url": "https://github.com/Feng-H/PDCA-with-AI/issues"
|
|
22
22
|
},
|
|
23
23
|
"homepage": "https://github.com/Feng-H/PDCA-with-AI#readme",
|
|
24
|
+
"bin": {
|
|
25
|
+
"pdca-skill": "./bin/pdca.js"
|
|
26
|
+
},
|
|
24
27
|
"files": [
|
|
25
28
|
"SKILL.md",
|
|
26
29
|
"assets/",
|
|
@@ -30,9 +33,9 @@
|
|
|
30
33
|
],
|
|
31
34
|
"scripts": {
|
|
32
35
|
"version": "git add package.json",
|
|
33
|
-
"postversion": "git push --follow-tags",
|
|
34
|
-
"release:patch": "npm version patch
|
|
35
|
-
"release:minor": "npm version minor
|
|
36
|
-
"release:major": "npm version major
|
|
36
|
+
"postversion": "git push --follow-tags && npm publish --access public",
|
|
37
|
+
"release:patch": "npm version patch",
|
|
38
|
+
"release:minor": "npm version minor",
|
|
39
|
+
"release:major": "npm version major"
|
|
37
40
|
}
|
|
38
41
|
}
|