@winton979/task-cli 1.0.0 → 1.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.
Files changed (2) hide show
  1. package/README.md +38 -0
  2. package/package.json +2 -2
package/README.md ADDED
@@ -0,0 +1,38 @@
1
+ # task-cli
2
+
3
+ Lightweight task workflow CLI for AI-assisted development.
4
+
5
+ ## Install
6
+
7
+ ```bash
8
+ npm install -g @winton979/task-cli
9
+ ```
10
+
11
+ ## Usage
12
+
13
+ ```bash
14
+ task init # Initialize .ai/ workflow structure in current directory
15
+ task --help # Show help
16
+ ```
17
+
18
+ After `task init`, the following skills become available in Claude Code:
19
+
20
+ **Task workflow:** `task-fast` → `task-explore` → `task-brief` → `task-implement` → `task-review`
21
+
22
+ **Bug workflow:** `bug-explore` → `bug-brief` → `bug-fix` → `bug-review`
23
+
24
+ **Other:** `decision-log`
25
+
26
+ ## Directory structure
27
+
28
+ ```
29
+ .ai/
30
+ ├── tasks/
31
+ │ ├── active/
32
+ │ └── archive/
33
+ ├── bugs/
34
+ │ ├── active/
35
+ │ └── archive/
36
+ └── decisions/
37
+ └── decisions.md
38
+ ```
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@winton979/task-cli",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "Lightweight task workflow CLI for AI-assisted development",
5
5
  "type": "module",
6
6
  "bin": {
@@ -16,4 +16,4 @@
16
16
  "dependencies": {
17
17
  "chalk": "^5.5.0"
18
18
  }
19
- }
19
+ }