skills/amia-github-projects-sync/SKILL.md
Use when managing team tasks through GitHub Projects V2 or synchronizing project state via GraphQL API. Trigger with /sync-projects or when updating project items. Loaded by ai-maestro-integrator-agent-main-agent.
npx skillsauth add emasoft/ai-maestro-integrator-agent amia-github-projects-syncInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Manages team tasks through GitHub Projects V2 via GraphQL API — READ + STATUS UPDATE ONLY.
gh) authenticated with project scopegh auth status (needs project scope)gh api graphql or run automation scriptsCopy this checklist and track your progress:
project scope| Output Type | Format | Description | |-------------|--------|-------------| | Project item IDs | JSON | GraphQL node IDs for created/updated items | | Status updates | JSON | Confirmation of field value changes | | Issue metadata | JSON | Issue numbers, titles, states, assignees | | Project reports | Markdown | Status summaries, progress updates | | Sync logs | Text/JSON | Automation script execution results | | Error details | JSON/Text | API errors, validation failures, rate limits |
Output discipline: All scripts support
--output-file <path>. Use it in automated workflows to minimize token consumption.
See references/ directory for all reference documents.
Script failures return non-zero exit codes. See error-handling for details:
gh api graphql -f query='
query {
repository(owner: "OWNER", name: "REPO") {
projectsV2(first: 10) {
nodes { id title number }
}
}
}
'
Full reference: detailed-guide:
development
Use when enforcing TDD via RED-GREEN-REFACTOR. No production code without a failing test first. Trigger with /enforce-tdd. Loaded by ai-maestro-integrator-agent-main-agent.
data-ai
Use when resuming sessions. Trigger with session resumption. Loaded by ai-maestro-integrator-agent-main-agent.
devops
Software release management and coordination. Use when creating releases, bumping versions, or rolling back deployments. Trigger with release tasks or /amia-create-release. Loaded by ai-maestro-integrator-agent-main-agent.
testing
Use when enforcing quality gates. Trigger with /amia-enforce-gates. Loaded by ai-maestro-integrator-agent-main-agent.