@eddiedao/team-auto 1.1.0 → 1.3.0

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/package.json +1 -1
  2. package/skill/SKILL.md +25 -3
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eddiedao/team-auto",
3
- "version": "1.1.0",
3
+ "version": "1.3.0",
4
4
  "description": "Claude Code skill: Auto-orchestrate Agent Teams from GitHub issues with planning, implementation, review, and merge workflows.",
5
5
  "keywords": ["claude-code", "claude-skill", "agent-teams", "github-issues", "ai-orchestration"],
6
6
  "author": "eddy",
package/skill/SKILL.md CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  name: team-auto
3
3
  description: "Auto-orchestrate Agent Teams from GitHub issues. Spawns lead + dev/reviewer/designer agents in worktrees, plans with opus, implements with sonnet, reviews before merge."
4
- version: 1.1.0
4
+ version: 1.3.0
5
5
  argument-hint: "[--devs N] [--reviewers N] [--designers N] [--branch <base>]"
6
6
  ---
7
7
 
@@ -23,13 +23,35 @@ When activated, IMMEDIATELY execute — no confirmation, no explanation.
23
23
 
24
24
  ## Step 1: GitHub Issue Discovery
25
25
 
26
+ **1a. Ensure `human` label exists:**
26
27
  ```bash
27
- gh issue list --state open --json number,title,labels,assignees,body --limit 50
28
+ gh label list | grep -q "^human" || gh label create "human" --description "Requires manual human action (not automatable)" --color "FF6B6B"
28
29
  ```
29
30
 
31
+ **1b. Fetch issues (excluding `human`-tagged):**
32
+ ```bash
33
+ gh issue list --state open --json number,title,labels,assignees,body --limit 50 | jq '[.[] | select(.labels | map(.name) | index("human") | not)]'
34
+ ```
35
+
36
+ **RULE:** Issues with the `human` label are **automatically excluded** from all team-auto workflows. Do NOT process, display, or assign `human`-tagged issues.
37
+
30
38
  If `gh` fails or no remote: **STOP**, tell user "GitHub CLI unavailable or no remote repository. Cannot proceed."
31
39
 
32
- Display issues to user, WAIT for confirmation of which issues to work on.
40
+ **1c. Classify remaining issues tag `human` (and exclude) if issue requires:**
41
+ - Third-party dashboard setup (Stripe, Polar.sh, Vercel, etc.)
42
+ - Account creation or OAuth app registration
43
+ - Manual API key generation or secret management
44
+ - Physical device testing or hardware access
45
+ - External service configuration (DNS, email providers, etc.)
46
+ - Business decisions requiring human judgment
47
+ - Legal/compliance approvals
48
+
49
+ Auto-tag matching issues (this removes them from the active pool):
50
+ ```bash
51
+ gh issue edit <number> --add-label "human"
52
+ ```
53
+
54
+ Display remaining automatable issues to user, WAIT for confirmation of which issues to work on.
33
55
 
34
56
  ## Step 2: Team Composition
35
57