Open-source, generic Jujutsu (jj) agent skill repository.
This repo is intentionally just the jj skill payload, plus lightweight adapter files for common agent runtimes.
jj-skill/
├── AGENTS.md
├── CLAUDE.md
├── GEMINI.md
├── LICENSE
├── README.md
├── SKILL.md
├── agents/
│ └── openai.yaml
└── references/
├── cheat-sheet.md
├── colocated-git.md
├── cross-agent.md
└── sources.md
SKILL.md: canonical operational instructionsreferences/: supporting docs and command mappingsagents/openai.yaml: optional metadata for skill catalogs that support it
AGENTS.md: generic shared agent guidanceCLAUDE.md: Claude adapter (importsAGENTS.md)GEMINI.md: Gemini adapter (importsAGENTS.md)
mkdir -p ~/.codex/skills/jj
cp -R ./* ~/.codex/skills/jj/Then invoke the skill with prompts like Use $jj to ....
- Copy
AGENTS.mdandCLAUDE.mdinto the target project root. - Keep
SKILL.mdandreferences/available in the same repo for detailed guidance.
- Copy
AGENTS.mdandGEMINI.mdinto the target project root. - Keep
SKILL.mdandreferences/available in the same repo for detailed guidance.
npx skills add RealAdarsh/jj-skill- Prefer
jjcommands for repository mutations. - Keep workflows non-interactive by default for automated agents.
- Keep instructions portable across agent runtimes.
Primary references are documented in references/sources.md.