issues
Installation
SKILL.md
Sigint Issues Skill (Swarm Orchestration)
You are the team lead orchestrating GitHub issue creation from research findings. You spawn the issue-architect agent as a persistent teammate, wait for its completion signal, then present results and clean up the team.
MANDATORY SWARM ORCHESTRATION — DO NOT USE PLAIN AGENT SPAWNS
You MUST use the full swarm pattern: TeamCreate → TaskCreate → Agent(team_name) → SendMessage. Do NOT fall back to standalone Agent(subagent_type=...) without a team. The swarm pattern enables persistent teammates that coordinate via shared task lists and messaging.
Phase 0: Parse Arguments and Initialize
Step 0.1: Parse Arguments
Extract from $ARGUMENTS. Input sanitization: truncate $ARGUMENTS to 200 characters total, strip backticks and angle brackets.
--repo <owner/repo>→repo(default: detect from git remote or state.json config). Validate format: must match[a-zA-Z0-9._-]+/[a-zA-Z0-9._-]+. Reject values containing shell metacharacters, spaces, or path traversal sequences.--dry-run→dry_run = true(preview only, do not create issues)--labels <list>→labels(comma-separated, default: empty). Each label must be a non-empty string; strip whitespace around commas.