{"id":50348068,"url":"https://github.com/mischasigtermans/claude-parley","last_synced_at":"2026-06-09T05:32:34.891Z","repository":{"id":356710272,"uuid":"1232801205","full_name":"mischasigtermans/claude-parley","owner":"mischasigtermans","description":"Talk to your other Claude Code projects from any session.","archived":false,"fork":false,"pushed_at":"2026-05-13T14:30:48.000Z","size":293,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-05-29T20:22:07.908Z","etag":null,"topics":["ai-agents","anthropic","claude","claude-code","claude-code-plugin","mcp","mcp-server","multi-agent","typescript"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/mischasigtermans.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2026-05-08T09:33:32.000Z","updated_at":"2026-05-13T15:08:18.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/mischasigtermans/claude-parley","commit_stats":null,"previous_names":["mischasigtermans/parley"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/mischasigtermans/claude-parley","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mischasigtermans%2Fclaude-parley","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mischasigtermans%2Fclaude-parley/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mischasigtermans%2Fclaude-parley/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mischasigtermans%2Fclaude-parley/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/mischasigtermans","download_url":"https://codeload.github.com/mischasigtermans/claude-parley/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mischasigtermans%2Fclaude-parley/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34093774,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-09T02:00:06.510Z","response_time":63,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["ai-agents","anthropic","claude","claude-code","claude-code-plugin","mcp","mcp-server","multi-agent","typescript"],"created_at":"2026-05-29T20:01:30.300Z","updated_at":"2026-06-09T05:32:34.886Z","avatar_url":"https://github.com/mischasigtermans.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Claude Parley\n\n[![Version](https://img.shields.io/badge/dynamic/json?url=https://raw.githubusercontent.com/mischasigtermans/claude-parley/main/.claude-plugin/plugin.json\u0026query=$.version\u0026label=version\u0026prefix=v)](https://github.com/mischasigtermans/claude-parley)\n[![License](https://img.shields.io/github/license/mischasigtermans/claude-parley)](LICENSE)\n\nTalk to your other Claude Code projects from any session.\n\nParley bundles an MCP server. By default it spawns a headless Claude in the peer's project directory, runs your request with that project's CLAUDE.md, skills, and context loaded, and persists the session so the agent has memory across turns. Per-peer MCP servers can be opted in via `peers.json`. If the peer is open and in `/parley listen` mode, that live window handles it instead.\n\n## Installation\n\n```\n/plugin marketplace add mischasigtermans/by-mischa\n/plugin install parley@by-mischa\n```\n\n### Requires\n\n- Claude Code ≥ 2.1 or Claude Cowork\n- `jq` for the SessionStart/SessionEnd hooks. `brew install jq` on macOS, `apt install jq` on Linux.\n- macOS or Linux. Windows untested.\n\n## Quick start\n\nDiscover projects you've used recently and aren't yet registered:\n\n```\n/parley discover\n```\n\nYou'll see a list of candidate paths. Say which ones to register in plain language:\n\n```\n'add the first three as peers'\n'register that one as docs and that one as api'\n'add ~/projects/example as my-project'\n```\n\nThe `parley` skill picks up the names and calls `parley_add` for each. From then on, any session can consult them by alias:\n\n```\n/parley peers\n'ask docs what's our auth strategy'\n'check with api how it handles rate limits'\n```\n\nYou can also be explicit:\n\n```\n/parley add my-project ~/code/my-project\n/parley ask my-project 'Summarize the current architecture in three bullets.'\n/parley log my-project\n```\n\n## Features\n\n- Three-tier routing: live peer when listening, resumed headless session when cached, fresh headless spawn otherwise.\n- Per-asker-project state. Each calling project gets its own cached session, transcript, and turn count per peer.\n- Auto-discovery of recent Claude projects via `/parley discover`.\n- Natural-language and slash-command interfaces, both backed by the same skill.\n- Append-only transcripts per peer. Full observability of headless turns.\n- Works with any MCP-capable client (Claude Desktop, Cursor) by pointing at the bundled MCP server.\n\n## Documentation\n\n- [Commands](docs/commands.md): slash commands and MCP tools reference\n- [Routing](docs/routing.md): how Parley picks live, resumed, or fresh\n- [Configuration](docs/configuration.md): `peers.json`, runtime state, permission handling, cleanup\n\n## Related\n\n- **[By Mischa](https://github.com/mischasigtermans/by-mischa)** marketplace lists Parley alongside my other Claude Code plugins. One marketplace add, everything reachable.\n- **[Personas](https://github.com/mischasigtermans/claude-personas)** uses Parley as its transport. Each enabled persona auto-registers as a parley peer, so 'ask steve what he thinks' works alongside 'ask onoma how it handles X'.\n\n## Changelog\n\nSee [CHANGELOG.md](CHANGELOG.md).\n\n## Credits\n\n- [Mischa Sigtermans](https://mischa.sigtermans.me)\n- Inspired by Shreyas Patil's [`session-bridge`](https://github.com/shreyaspatil/session-bridge) for the live-session routing pattern.\n\n## License\n\nMIT. See [LICENSE](LICENSE).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmischasigtermans%2Fclaude-parley","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmischasigtermans%2Fclaude-parley","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmischasigtermans%2Fclaude-parley/lists"}