chorus-cli 0.4.0 → 0.4.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 +79 -0
  2. package/package.json +1 -1
package/README.md ADDED
@@ -0,0 +1,79 @@
1
+ # Chorus
2
+
3
+ AI-powered ticket resolution. Chorus reads your issues, chats with QA for requirements, writes the code, and opens a pull request — all from a single command.
4
+
5
+ ```bash
6
+ npm install -g chorus-cli
7
+ chorus setup
8
+ chorus run 4464
9
+ ```
10
+
11
+ ## What it does
12
+
13
+ 1. **Fetches your ticket** from GitHub or Azure DevOps
14
+ 2. **Chats with QA** via Slack or Teams to clarify requirements
15
+ 3. **Writes the code** using Claude AI with full repo context
16
+ 4. **Lints and reviews** the changes automatically
17
+ 5. **Creates a PR** once you approve
18
+
19
+ ## Installation
20
+
21
+ Requires Node.js 18+, Python 3.8+, and Git.
22
+
23
+ ```bash
24
+ npm install -g chorus-cli
25
+ ```
26
+
27
+ The installer automatically sets up a Python environment at `~/.config/chorus/.venv`.
28
+
29
+ ## Setup
30
+
31
+ ```bash
32
+ chorus setup
33
+ ```
34
+
35
+ This walks you through connecting your repo (GitHub or Azure DevOps), authenticating, and choosing a messenger (Teams or Slack) for QA conversations.
36
+
37
+ ## Usage
38
+
39
+ ```bash
40
+ # Process your latest assigned issue
41
+ chorus run
42
+
43
+ # Process a specific issue
44
+ chorus run 4464
45
+
46
+ # Use a full URL (auto-detects provider)
47
+ chorus run https://github.com/myorg/myrepo/issues/4464
48
+ chorus run https://dev.azure.com/myorg/myproject/_workitems/edit/456
49
+ ```
50
+
51
+ ### Flags
52
+
53
+ | Flag | Description |
54
+ |------|-------------|
55
+ | `--super` | Use Claude Opus for higher-quality QA (8x credits) |
56
+ | `--skip-qa` | Skip QA chat, go straight to coding |
57
+ | `--qa 'Name'` | Specify who to message for QA |
58
+
59
+ ```bash
60
+ chorus run 4464 --super --qa 'John Doe'
61
+ ```
62
+
63
+ ## Integrations
64
+
65
+ **GitHub** — Issues + pull requests. Set `GITHUB_OWNER`, `GITHUB_REPO`, and optionally `GITHUB_TOKEN` for private repos.
66
+
67
+ **Azure DevOps** — Work items + pull requests. Set `AZDO_ORG`, `AZDO_PROJECT`, `AZDO_REPO`, and `AZDO_PAT`.
68
+
69
+ **Slack** — QA conversations via DM. Create a Slack app with `chat:write`, `users:read`, `im:history`, `im:write` scopes and set `SLACK_BOT_TOKEN`.
70
+
71
+ **Teams** — QA conversations via browser automation. Configured during `chorus setup`.
72
+
73
+ ## Docs
74
+
75
+ Full documentation at [getchorusai.com/docs](https://getchorusai.com/docs)
76
+
77
+ ## License
78
+
79
+ Proprietary. Copyright Chorus.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "chorus-cli",
3
- "version": "0.4.0",
3
+ "version": "0.4.1",
4
4
  "description": "Automated ticket resolution with AI, Teams, and Slack integration",
5
5
  "main": "index.js",
6
6
  "bin": {