@ai-is-gonna/get-tasks-done 0.2.2 → 0.2.3

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/LICENSE CHANGED
@@ -1,6 +1,6 @@
1
1
  MIT License
2
2
 
3
- Copyright (c) 2025 Lex Christopherson
3
+ Copyright (c) 2026 Davide Troiani
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
package/README.md CHANGED
@@ -7,6 +7,50 @@ Get Tasks Done (GTD) is a workflow layer for AI-assisted software development. I
7
7
 
8
8
  The project started from <a href="https://github.com/open-gsd/get-shit-done-redux" target="_blank">open-gsd/get-shit-done-redux</a> and has since been rebuilt around task issue execution, PR review, reconciliation, and verification. The design is deliberately conservative: give agents enough context, give them bounded work, and keep scope, review, merge, and final acceptance with people.
9
9
 
10
+ ## Quick start
11
+
12
+ 1. Install GTD for Codex:
13
+
14
+ ```bash
15
+ npx @ai-is-gonna/get-tasks-done@latest --codex --global
16
+ ```
17
+
18
+ 2. In a GitHub-backed test repo:
19
+
20
+ ```text
21
+ $gtd-new-project
22
+ ```
23
+
24
+ 3. Ask GTD to plan a small first phase:
25
+
26
+ ```text
27
+ $gtd-spec-phase 1
28
+ $gtd-plan-phase 1
29
+ ```
30
+
31
+ 4. Export only when the preview looks right:
32
+
33
+ ```text
34
+ $gtd-export-phase-issues 1
35
+ ```
36
+
37
+ 5. Implement the first 2 tasks:
38
+
39
+ ```text
40
+ $gtd-orchestrate-tasks the first 2 tasks
41
+ ```
42
+
43
+ You may swap the runtime flag for your agent:
44
+
45
+ ```bash
46
+ --claude
47
+ --codex
48
+ --gemini
49
+ --opencode
50
+ --cursor
51
+ --all
52
+ ```
53
+
10
54
  ## Technical evaluation
11
55
 
12
56
  GTD is most useful for teams that already review work in GitHub and want AI agents to operate inside the same delivery controls as human contributors. It is a poor fit for unattended coding, projects without PR discipline, or prototypes where planning and careful human validation would slow the work down more than they help.
@@ -111,7 +155,7 @@ flowchart TD
111
155
  class O,Q verify
112
156
  ```
113
157
 
114
- ## Install the workflow
158
+ ## Adoption guide
115
159
 
116
160
  Requirements:
117
161
 
@@ -127,17 +171,6 @@ Recommended install for Codex:
127
171
  npx @ai-is-gonna/get-tasks-done@latest --codex --global
128
172
  ```
129
173
 
130
- Swap the runtime flag for your agent:
131
-
132
- ```bash
133
- --claude
134
- --codex
135
- --gemini
136
- --opencode
137
- --cursor
138
- --all
139
- ```
140
-
141
174
  The installer currently supports Claude Code, Codex, Gemini, Kilo, OpenCode, GitHub Copilot, Antigravity, Cursor, Windsurf, Augment, Trae, Qwen Code, Hermes Agent, CodeBuddy, and Cline.
142
175
 
143
176
  Use installer help as the source of truth for profiles, local installs, custom config paths, and runtime-specific flags:
@@ -146,7 +179,7 @@ Use installer help as the source of truth for profiles, local installs, custom c
146
179
  npx @ai-is-gonna/get-tasks-done@latest --help
147
180
  ```
148
181
 
149
- After installation, run `/gtd-help` in the target runtime to confirm the installed command surface. For a first repository, run `/gtd-new-project` and keep the generated `.planning/config.json` defaults until you have exercised the basic flow once.
182
+ After installation, run `$gtd-help` in the target runtime to confirm the installed command surface. For a first repository, run `$gtd-new-project` and keep the generated `.planning/config.json` defaults until you have exercised the basic flow once.
150
183
 
151
184
  ## Install the SDK
152
185
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ai-is-gonna/get-tasks-done",
3
- "version": "0.2.2",
3
+ "version": "0.2.3",
4
4
  "description": "Task-based execution control for AI-assisted development workflows.",
5
5
  "bin": {
6
6
  "get-tasks-done": "bin/install.js",
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "@ai-is-gonna/gtd-sdk",
3
- "version": "0.2.2",
3
+ "version": "0.2.3",
4
4
  "lockfileVersion": 3,
5
5
  "requires": true,
6
6
  "packages": {
7
7
  "": {
8
8
  "name": "@ai-is-gonna/gtd-sdk",
9
- "version": "0.2.2",
9
+ "version": "0.2.3",
10
10
  "license": "MIT",
11
11
  "dependencies": {
12
12
  "@anthropic-ai/claude-agent-sdk": "^0.2.84",
package/sdk/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ai-is-gonna/gtd-sdk",
3
- "version": "0.2.2",
3
+ "version": "0.2.3",
4
4
  "description": "GTD SDK — programmatic interface for running GTD plans via the Agent SDK",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",