Agent Plugins Marketplace
← All plugins

jj-agents

v1.0.0

Jujutsu (jj) version control for teams of coding agents: one workspace per agent, safe integration, and recovery through the operation log. Bundles a skill, a jj MCP server, git-write guard hooks, and WorktreeCreate/WorktreeRemove hooks that give Claude Code jj workspaces instead of git worktrees.

Claude CodeAgent Plugins1 Skill1 MCP serverstdio

By jj-agents courseLicense: MIT0 GitHub starsUpdated 1 hour ago

Directory evidence

Runtimes
Claude Code and Agent Plugins
Parsed components
2 skill or MCP entries
Source updated
Sep 26, 2026
Manifest status
Canonical path parsed

The directory validates manifest shape and source location. It does not execute the plugin or provide a security endorsement. Review the indexing methodology →

Install jj-agents for Claude Code

Installs for the current user
claude plugin marketplace add IchenDEV/agent-plugin-mkt
claude plugin marketplace update agent-plugin-marketplace
claude plugin install jj-agents@agent-plugin-marketplace

Paste and run these commands in a terminal with Claude Code. They add and refresh the PluginsMP catalog, then install this plugin.

The installer fetches third-party code from the source repository shown on this page. This directory validates manifest structure and source location, but does not perform a security audit; review the manifest, components, and source before installing.

Get the source manually
git clone https://github.com/jacksodj/jujutsu-multi-agent

Clone the source repository, then follow its setup instructions to add the plugin to a compatible client. The plugin root is plugins/jj-agents/.

Plugin files

plugins/jj-agents/
├── .claude-plugin/plugin.json
├── plugin.json
├── skills/jj-multi-agent/SKILL.md
└── .mcp.json

Included Skills1

jj-multi-agentskills/jj-multi-agent/SKILL.md

Version control with Jujutsu (jj) when one or more AI coding agents work in the same repository. Use whenever the repository has a .jj directory, the user mentions jj or Jujutsu, or the task involves committing, branching, rebasing, resolving conflicts, pushing, undoing, or running several agents in parallel (workspaces). Covers the per-task change workflow, one-workspace-per-agent isolation, integrating agents' work, and safe recovery with the operation log.

MCP servers1

jjstdio
command
node
args
${CLAUDE_PLUGIN_ROOT}/mcp/server.mjs

MCP configuration uses runtime-provided plugin path placeholders such as ${PLUGIN_ROOT} or ${CLAUDE_PLUGIN_ROOT}. Review the manifest for the runtime-specific expansion rules.

Plugin manifests2

plugins/jj-agents/.claude-plugin/plugin.json
{
  "name": "jj-agents",
  "displayName": "jj for agent teams",
  "version": "1.0.0",
  "description": "Jujutsu (jj) version control for teams of coding agents: one workspace per agent, safe integration, and recovery through the operation log. Bundles a skill, a jj MCP server, git-write guard hooks, and WorktreeCreate/WorktreeRemove hooks that give Claude Code jj workspaces instead of git worktrees.",
  "author": {
    "name": "jj-agents course"
  },
  "license": "MIT",
  "keywords": [
    "jj",
    "jujutsu",
    "vcs",
    "workspaces",
    "multi-agent"
  ]
}
plugins/jj-agents/plugin.json
{
  "$schema": "https://agent-plugins.org/schemas/1.0.0/plugin.schema.json",
  "name": "jj-agents",
  "version": "1.0.0",
  "description": "Jujutsu (jj) version control for teams of coding agents: one workspace per agent, safe integration, and recovery through the operation log. Bundles a skill, a jj MCP server, and git-write guard hooks.",
  "author": {
    "name": "jj-agents course"
  },
  "license": "MIT",
  "keywords": [
    "jj",
    "jujutsu",
    "version control",
    "vcs",
    "workspace",
    "multi-agent",
    "parallel agents",
    "commit",
    "rebase",
    "conflict"
  ],
  "extensions": {
    "com.openai": {
      "hooks": "./hooks/codex-hooks.json"
    }
  }
}

If you maintain this plugin, link to this source-backed listing from your README so users can review its manifest and indexed components.

[jj-agents on Agent Plugins Marketplace](https://pluginsmp.com/plugins/jj-agents)