بنقرة واحدة
gor
Gest Orchestrate. Execute a phased Gest iteration, using jj workspaces for independent parallel write tasks.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Gest Orchestrate. Execute a phased Gest iteration, using jj workspaces for independent parallel write tasks.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
Gest Setup. Bootstrap or refresh a jj/Gest agent-operable repository surface across tools, command contracts, Justfile targets, hooks, ignores, installs, and setup follow-ups.
Gest Test. Run unit, API regression, smoke, regression, and integration tests appropriate to the changed code; add missing tests when the task changes callable behavior.
Gest Brainstorm. Explore rough ideas or ambiguous requests, inspect existing code/docs/Gest context, ask clarifying questions when needed, and decide whether to create a spec, outline issue, plan, or session task.
Gest Commit. Create a jj commit/bookmark/push checkpoint using conventional commit style and GitHub metadata when present.
Gest Docs. Audit, create, update, and verify user-facing docs, developer-facing docs, and in-code documentation affected by a task.
Install jj Gest package extras after npx installs the skills, including hooks/settings and AGENTS guidance.
| name | gor |
| description | Gest Orchestrate. Execute a phased Gest iteration, using jj workspaces for independent parallel write tasks. |
Use for phased iterations in jj repositories.
gest iteration show <id> --json
gest iteration status <id> --json
gest iteration graph <id>
gest project --json
gim locallyreferences/tag_dependency_workflow.md. For code-facing
tasks, make sure workers know which ast-grep dependency checks and
semantic tags apply.gest iteration next <id> --claim --agent <agent-name> --json
Exit code 75 means no work is currently available.
Distinguish sub-agent roles before dispatch:
Gest mutations, task completion, commit/bookmark/push decisions, and PR decisions should remain centralized unless a role is explicitly assigned those responsibilities. Writable sub-agents must have disjoint write scopes. In jj repos, concurrent writable work uses one jj workspace per writable task; do not use git worktrees.
Agentic Just targets add a mandatory delegation case: an emitted AGENT_TASK v1
block is a subagent handoff packet. The current agent validates the packet and
delegates the parsed task rather than running it inline. Nested agentic Just
calls, agentic dependencies, hook-triggered packets, and agentic verification
targets inherit the same recursive subagent boundary.
For a parallel task:
jj workspace add ../gest-<task-id> --name <task-id> -r main
(cd ../gest-<task-id> && gest project attach <project-id>)
Dispatch the worker with cwd/workdir set to that workspace. The worker should
record vcs.workspace_path and should not create another workspace layer.
Cleanup:
(cd ../gest-<task-id> && gest project detach)
jj workspace forget <task-id>
rm -rf ../gest-<task-id>
JJ workspaces share the commit graph. Do not merge or cherry-pick worker results back; verify the resulting graph and phase state instead.