giga-workflow
Skill: Giga Workflow
Instalar con Codex o Claude Copia este prompt, pégalo en Codex, Claude u otro asistente, y deja que revise la página de la skill y la instale por ti.
Menú
Skill: Giga Workflow
Instalar con Codex o Claude Copia este prompt, pégalo en Codex, Claude u otro asistente, y deja que revise la página de la skill y la instale por ti.
Basado en la clasificación ocupacional SOC
Never run Docker containers as root. Enforce USER directive in Dockerfiles and user: in compose files. Database images are the only exception.
Handle packages migrating between pnpm workspaces. Clean stale root copies, update workspace configs, fix broken workspace:* references.
Recover lost source files from pi session history when files were deleted but never committed to git.
Improve the Hormuz clock model through new signal classes, schema changes, uncertainty modeling, and better rendering or branch logic
Revise fork-tax protocols so they assume concurrent agents by default in shared workspaces, forbid destructive repo-wide cleanup of unrelated dirt, and require path-scoped staging plus explicit blocker recording.
Persist the full working state into git (commit + tag + push + manifest artifacts) as a deterministic handoff snapshot. Use when the user requests Π / fork tax / full dump.
| name | giga-workflow |
| description | Skill: Giga Workflow |
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/