orchestration
v1.30.0Core orchestration guidelines for conversation style, code style, testing, tool conventions, and workflow automation
By Craig MotlinLicense: Apache-2.015 GitHub starsUpdated 15 hours ago
Directory evidence
- Runtimes
- Codex and Claude Code
- Parsed components
- 4 skill or MCP entries
- Source updated
- Aug 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 plugin
codex plugin marketplace add IchenDEV/agent-plugin-mkt
codex plugin marketplace upgrade agent-plugin-marketplace
codex plugin add orchestration@agent-plugin-marketplacePaste and run these commands in a terminal with Codex. 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/motlin/claude-code-pluginsClone the source repository, then follow its setup instructions to add the plugin to a compatible client. The plugin root is plugins/orchestration/.
Plugin files
├── .codex-plugin/plugin.json├── .claude-plugin/plugin.json├── skills/conversation-style/SKILL.md├── skills/finish/SKILL.md├── skills/llm-context/SKILL.md└── skills/orchestration/SKILL.md
Included Skills4
Conversation style guidelines. Use when responding to the user.
This skill should be used after completing any task, before returning control to the user. Always run this skill — it handles the case where there's nothing to do.
Guidelines for working with LLM context stored in the .llm/ directory.
Coordinates other skills and agents. ALWAYS use this skill on startup.
Plugin manifests2
{
"name": "orchestration",
"version": "1.30.0",
"description": "Core orchestration guidelines for conversation style, code style, testing, tool conventions, and workflow automation",
"author": {
"name": "Craig Motlin"
},
"license": "Apache-2.0",
"homepage": "https://github.com/motlin/claude-code-plugins/tree/main/plugins/orchestration",
"repository": "https://github.com/motlin/claude-code-plugins",
"keywords": [
"codex",
"plugin",
"orchestration"
],
"interface": {
"displayName": "Orchestration",
"shortDescription": "Core orchestration guidelines for conversation style, code style, testing, tool conventions, and workflow automation",
"longDescription": "Core orchestration guidelines for conversation style, code style, testing, tool conventions, and workflow automation",
"developerName": "Craig Motlin",
"category": "Productivity",
"capabilities": [
"Skills"
],
"defaultPrompt": [
"Use the orchestration plugin."
],
"brandColor": "#3B82F6"
},
"skills": "./skills/"
}{
"$schema": "https://anthropic.com/claude-code/plugin.schema.json",
"name": "orchestration",
"description": "Core orchestration guidelines for conversation style, code style, testing, tool conventions, and workflow automation",
"version": "1.30.0",
"license": "Apache-2.0",
"author": {
"name": "Craig Motlin"
},
"agents": [
"./agents/finish.md"
],
"skills": [
"./skills/orchestration",
"./skills/llm-context",
"./skills/conversation-style",
"./skills/finish"
]
}For maintainers
If you maintain this plugin, link to this source-backed listing from your README so users can review its manifest and indexed components.
[orchestration on Agent Plugins Marketplace](https://pluginsmp.com/plugins/orchestration)