techunter 0.1.1 → 0.1.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/README.md +23 -11
- package/dist/index.js +308 -159
- package/dist/mcp.js +299 -104
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -3,9 +3,9 @@
|
|
|
3
3
|
> An AI-powered task distribution CLI for development teams. Manage GitHub Issues through a conversational terminal interface.
|
|
4
4
|
|
|
5
5
|
```
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
6
|
+
╔═══════════════╗
|
|
7
|
+
◆═══╬ TECHUNTER ╬═══▶ Techunter v0.1.3
|
|
8
|
+
╚═══════════════╝ GLM-5 · z-ai · owner/repo
|
|
9
9
|
```
|
|
10
10
|
|
|
11
11
|
---
|
|
@@ -29,10 +29,11 @@
|
|
|
29
29
|
## Features
|
|
30
30
|
|
|
31
31
|
- **Conversational REPL** — Describe what you need in plain English; the Agent calls the right tools automatically
|
|
32
|
-
- **GitHub Issues integration** — Create, claim, submit, and close tasks; labels and assignees stay in sync
|
|
32
|
+
- **GitHub Issues integration** — Create, claim, submit, review, and close tasks; labels and assignees stay in sync
|
|
33
33
|
- **Automatic branch management** — Claiming a task creates and pushes the corresponding Git branch
|
|
34
34
|
- **Smart task guides** — Before you start, the Agent scans your codebase and posts a detailed implementation guide as an Issue comment
|
|
35
|
-
- **One-command delivery** — `/submit` lets the Agent review your changes against acceptance criteria, then commits and pushes
|
|
35
|
+
- **One-command delivery** — `/submit` lets the Agent review your changes against acceptance criteria, then commits and pushes
|
|
36
|
+
- **Review & accept flow** — `/review` lists in-review PRs; `/accept` merges and closes
|
|
36
37
|
- **Slash commands** — Common actions don't need a description: just `/pick`, `/new`, `/submit`
|
|
37
38
|
- **Persistent conversation history** — Full context is retained across turns in the same REPL session
|
|
38
39
|
|
|
@@ -43,7 +44,7 @@
|
|
|
43
44
|
- Node.js ≥ 18
|
|
44
45
|
- A GitHub repository with Issues enabled
|
|
45
46
|
- GitHub Personal Access Token or OAuth Device Flow authorization
|
|
46
|
-
-
|
|
47
|
+
- An OpenAI-compatible API key (OpenRouter by default, or any custom provider)
|
|
47
48
|
|
|
48
49
|
---
|
|
49
50
|
|
|
@@ -75,9 +76,10 @@ tch init
|
|
|
75
76
|
|
|
76
77
|
The wizard will ask for:
|
|
77
78
|
|
|
78
|
-
1. **GitHub authentication** —
|
|
79
|
-
-
|
|
80
|
-
2. **
|
|
79
|
+
1. **GitHub authentication** — Browser OAuth (recommended) or a Personal Access Token
|
|
80
|
+
- PAT: create one at https://github.com/settings/tokens/new with `repo` and `read:user` scopes
|
|
81
|
+
2. **AI provider** — OpenRouter (default) or a custom OpenAI-compatible endpoint
|
|
82
|
+
- OpenRouter key: https://openrouter.ai/settings/keys
|
|
81
83
|
3. **GitHub repository** — Auto-detected from your git remote, or enter manually
|
|
82
84
|
|
|
83
85
|
Config is stored at `~/.config/techunter/`.
|
|
@@ -99,10 +101,14 @@ Starts the conversational REPL. Type natural language or slash commands:
|
|
|
99
101
|
| `/pick` | `/p` | Browse and act on tasks interactively |
|
|
100
102
|
| `/new` | `/n` | Create a new task |
|
|
101
103
|
| `/close` | `/d` | Close (delete) a task |
|
|
102
|
-
| `/
|
|
103
|
-
| `/
|
|
104
|
+
| `/edit` | `/e` | Edit the title or description of a task |
|
|
105
|
+
| `/submit` | `/s` | Review changes, commit, and push |
|
|
106
|
+
| `/review` | `/rv` | List tasks waiting for your approval |
|
|
107
|
+
| `/accept` | `/ac` | Accept a reviewed task: merge PR and close issue |
|
|
104
108
|
| `/status` | `/me` | Show tasks assigned to you |
|
|
105
109
|
| `/code` | `/c` | Launch Claude Code for the current task branch |
|
|
110
|
+
| `/config` | `/cfg` | Change settings (repo, API keys, etc.) |
|
|
111
|
+
| `/init` | | Re-run the setup wizard for this repo |
|
|
106
112
|
|
|
107
113
|
Any other input is sent to the AI Agent, for example:
|
|
108
114
|
|
|
@@ -141,6 +147,12 @@ task-{issue_number}-{your-github-username}
|
|
|
141
147
|
|
|
142
148
|
Example: Issue #7 claimed by `johndoe` → `task-7-johndoe`
|
|
143
149
|
|
|
150
|
+
Worker branches (for persistent personal workspaces) follow:
|
|
151
|
+
|
|
152
|
+
```
|
|
153
|
+
worker-{your-github-username}
|
|
154
|
+
```
|
|
155
|
+
|
|
144
156
|
---
|
|
145
157
|
|
|
146
158
|
## AI Agent Tools
|