By jieliapp
Sync Claude Code sessions to Jieli threads and attach Jieli thread trailers to Claude-created commits.
Create a paste-ready handoff/compress prompt for continuing the current Claude Code session in a fresh agent. Use when the user says handoff, hand over, compress, compact, summarize context, continue in a new session, or pass work to another agent.
Search prior Jieli threads by keywords, repo, file, topic, or other clues, then optionally read a matching thread.
Read a specific known Jieli /threads/T-<uuid> link or raw T-<uuid> thread id via the markdown/json export.
This plugin requires configuration values that are prompted when the plugin is enabled. Sensitive values are stored in your system keychain.
api_keyExecutes bash commands
Hook triggers when Bash tool is used
Own this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge. GitHub access is read-only (username + org membership).
Sign in to claimOwn this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge. GitHub access is read-only (username + org membership).
Sign in to claimBased on adoption, maintenance, documentation, and repository signals. Not a security audit or endorsement.
API key used to upload, read, and search your Jieli threads.
${user_config.api_key}base_urlBase URL for Jieli. Defaults to https://jieli.app.
${user_config.base_url}Plugins for syncing AI coding sessions to Jieli.
Add the marketplace in Claude Code:
/plugin marketplace add jieliapp/plugins
Install the plugin:
/plugin install jieli@jieliapp
Then get an API key from https://jieli.app and configure it for Claude Code.
When Claude Code opens the plugin configuration screen, set:
Jieli API key = your-jieli-api-key
Reload plugins:
/reload-plugins
You can also set it through your shell environment before starting Claude Code:
export JIELI_API_KEY="your-jieli-api-key"
Add the marketplace in Codex:
codex plugin marketplace add jieliapp/plugins
Install the plugin:
codex plugin add jieli@jieliapp
Then enable the plugin and trust its hooks with /hooks.
Configure the API key. Recommended for Codex and Claude Code: write ~/.config/jieli/settings.json, which works even after the agent is already running:
mkdir -p ~/.config/jieli
node - <<'JS'
const fs = require("node:fs");
const os = require("node:os");
const path = require("node:path");
const settingsPath = path.join(os.homedir(), ".config", "jieli", "settings.json");
fs.writeFileSync(
settingsPath,
JSON.stringify({ api_key: "your-jieli-api-key", base_url: "https://jieli.app" }, null, 2) + "\n",
{ mode: 0o600 },
);
JS
You can also use environment variables before starting Codex:
export JIELI_API_KEY="your-jieli-api-key"
Claude-Code-Thread-ID trailers to Claude-created git commits.Jieli-Thread trailers to simple Codex-created git commit commands.jieli-read skill for reading known Jieli thread links or ids.jieli-find skill for searching synced Jieli threads by keywords, repo, file, topic, or clues.make test
make validate
npx claudepluginhub jieliapp/plugins --plugin jieliMemory compression system for Claude Code - persist context across sessions
Ultra-compressed communication mode. Cuts ~75% of tokens while keeping full technical accuracy by speaking like a caveman.
Multi-model consensus engine integrating OpenAI Codex CLI, Gemini CLI, and Claude CLI for collaborative code review and problem-solving.
Curate auto-memory, promote learnings to CLAUDE.md and rules, extract proven patterns into reusable skills.
Editorial "Web Designer" bundle for Claude Code from Antigravity Awesome Skills.