symphony-github 0.1.0 → 0.1.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 +2 -0
  2. package/package.json +2 -1
package/README.md CHANGED
@@ -25,6 +25,8 @@ It is the GitHub-native successor to dmux: same multi-agent / tmux workflow, but
25
25
  npm install -g symphony-github
26
26
  ```
27
27
 
28
+ Contributor and release notes live in [CONTRIBUTING.md](/home/mirekl/Symphony_Repositories/symphony-github/CONTRIBUTING.md).
29
+
28
30
  Or run from a local checkout:
29
31
 
30
32
  ```bash
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "symphony-github",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "AI agent orchestrator that listens to GitHub issues and manages parallel agent work in tmux panes with git worktrees",
5
5
  "type": "module",
6
6
  "license": "MIT",
@@ -42,6 +42,7 @@
42
42
  "build": "tsc && chmod +x dist/index.js",
43
43
  "dev": "tsc && node dist/index.js",
44
44
  "start": "node dist/index.js",
45
+ "test": "npm run typecheck",
45
46
  "typecheck": "tsc --noEmit",
46
47
  "clean": "rm -rf dist",
47
48
  "pack:dry-run": "npm pack --dry-run",