giga-workflow
Execute Giga system operations for workspace automation, including watching changes, running submodule tests, and propagating commits
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Execute Giga system operations for workspace automation, including watching changes, running submodule tests, and propagating commits
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
This skill guides agents and developers through the Kanban workflow defined in `orgs/riatzukiza/promethean/docs/agile/process.md`.
Protocol to stop apology loops and focus on verified fixes.
Protocol to break out of repetitive, failing edit loops by forcing analysis over action.
Resolves Clojure namespace-path mismatches and classpath errors with definitive path conversion
Auto-fix Clojure delimiters and validate syntax with OpenCode tools.
Protocol to recover from Clojure/Script syntax errors, specifically bracket mismatches and EOF errors.
| name | giga-workflow |
| description | Execute Giga system operations for workspace automation, including watching changes, running submodule tests, and propagating commits |
Execute Giga system operations for workspace automation, including watching changes, running submodule tests, and propagating commits.
orgs/** for changes and run affected tests/buildsdocs/orgs/riatzukiza/promethean)For Giga Watch:
bun run src/giga/giga-watch.tsorgs/** for changesFor Single Submodule Target:
bun run src/giga/run-submodule.ts <subPath> <target>For Commit Propagation:
bun run src/giga/commit-propagator.tsgiga/v<version>/<action>/<result>/<id>For Pantheon Commit Messages:
PANTHEON_CLI=<cli-path> environment variablebun run src/giga/pantheon.ts <action> <result> <repoPath> [version]Bun.watch (unavailable on some platforms) - script falls back to manual modeSUBMODULE_JOBS=<n> environment variable to control parallel execution (default: 8)nx affected --target=test before builddirty/stealth branch (git checkout + commit, skip typecheck)giga/v<version>/<action>/<result>/<id> for traceability# Start Giga watch (background or foreground)
bun run src/giga/giga-watch.ts
# Use custom job count
SUBMODULE_JOBS=4 bun run src/giga/giga-watch.ts
# Test a submodule
bun run src/giga/run-submodule.ts orgs/riatzukiza/promethean test
# Build a submodule
bun run src/giga/run-submodule.ts orgs/sst/opencode build
# Typecheck a submodule
bun run src/giga/run-submodule.ts orgs/bhauman/clojure-mcp typecheck
# Lint a submodule
bun run src/giga/run-submodule.ts orgs/moofone/codex-ts-sdk lint
# Commit submodule changes and propagate to parent repos
bun run src/giga/commit-propagator.ts
# Use custom Pantheon CLI
PANTHEON_CLI="pantheon" bun run src/giga/commit-propagator.ts
# Dry-run to preview changes
PANTHEON_CLI="pantheon --dry-run" bun run src/giga/commit-propagator.ts
# Use Pantheon CLI for AI commit message
PANTHEON_CLI="pantheon" bun run src/giga/pantheon.ts "watch-test" "success" "orgs/riatzukiza/promethean" "v1.0.0"
# Fallback summary
bun run src/giga/pantheon.ts "watch-build" "success" "orgs/sst/opencode" "v2.0.0"
src/giga/giga-watch.tssrc/giga/run-submodule.tssrc/giga/commit-propagator.tssrc/giga/pantheon.tssrc/submodule/smart-commit.tstools/nx-plugins/giga/