Skip to content

Commit e825fae

Browse files
authored
Merge pull request #47 from Kanevry/add-session-orchestrator
Add Session Orchestrator to Development & Workflow
2 parents 2c1e681 + 32985a5 commit e825fae

94 files changed

Lines changed: 11871 additions & 2 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.agents/plugins/marketplace.json

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -160,6 +160,18 @@
160160
},
161161
"category": "Development & Workflow"
162162
},
163+
{
164+
"name": "session-orchestrator",
165+
"source": {
166+
"source": "local",
167+
"path": "./plugins/Kanevry/session-orchestrator"
168+
},
169+
"policy": {
170+
"installation": "AVAILABLE",
171+
"authentication": "ON_INSTALL"
172+
},
173+
"category": "Development & Workflow"
174+
},
163175
{
164176
"name": "vibe-portrait",
165177
"source": {

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,7 @@ Third-party plugins built by the community. [PRs welcome](#contributing)!
8989
- [Codex Reviewer](https://github.com/schuettc/codex-reviewer) - Second-pass review of Claude-driven plans and implementations.
9090
- [HOTL Plugin](https://github.com/yimwoo/hotl-plugin) - Human-on-the-Loop AI coding workflow plugin for Codex, Claude Code, and Cline with structured planning, review, and verification guardrails.
9191
- [Project Autopilot](https://github.com/AlexMi64/codex-project-autopilot) - Turn an idea into a structured project workflow with planning, execution, verification, and handoff.
92+
- [Session Orchestrator](https://github.com/Kanevry/session-orchestrator) - Session orchestration for Claude Code, Codex, and Cursor IDE — structured planning, wave-based execution, VCS integration (GitLab + GitHub), quality gates, and clean session close-out with issue tracking.
9293
- [VibePortrait](https://github.com/dadwadw233/VibePortrait) - Developer personality portrait generator — analyzes AI conversation history to produce MBTI type (16 color themes), capability radar, developer rating, 3-dimension famous match, and a persona skill that lets any AI "think like you".
9394

9495
### Tools & Integrations

plugins.json

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
"$schema": "https://json-schema.org/draft/2020-12/schema",
33
"name": "awesome-codex-plugins",
44
"version": "1.0.0",
5-
"last_updated": "2026-04-07",
6-
"total": 40,
5+
"last_updated": "2026-04-16",
6+
"total": 41,
77
"categories": [
88
"Development & Workflow",
99
"Tools & Integrations"
@@ -139,6 +139,16 @@
139139
"source": "awesome-codex-plugins",
140140
"install_url": "https://raw.githubusercontent.com/AlexMi64/codex-project-autopilot/main/.codex-plugin/plugin.json"
141141
},
142+
{
143+
"name": "Session Orchestrator",
144+
"url": "https://github.com/Kanevry/session-orchestrator",
145+
"owner": "Kanevry",
146+
"repo": "session-orchestrator",
147+
"description": "Session orchestration for Claude Code, Codex, and Cursor IDE — structured planning, wave-based execution, VCS integration (GitLab + GitHub), quality gates, and clean session close-out with issue tracking.",
148+
"category": "Development & Workflow",
149+
"source": "awesome-codex-plugins",
150+
"install_url": "https://raw.githubusercontent.com/Kanevry/session-orchestrator/main/.codex-plugin/plugin.json"
151+
},
142152
{
143153
"name": "VibePortrait",
144154
"url": "https://github.com/dadwadw233/VibePortrait",
Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
{
2+
"name": "session-orchestrator",
3+
"version": "2.0.0-beta.5",
4+
"description": "Session-level orchestration for structured planning, wave execution, quality gates, and clean session close-out",
5+
"author": {
6+
"name": "Bernhard Goetzendorfer",
7+
"email": "office@gotzendorfer.at",
8+
"url": "https://gotzendorfer.at"
9+
},
10+
"homepage": "https://gotzendorfer.at/en/session-orchestrator",
11+
"repository": "https://github.com/Kanevry/session-orchestrator",
12+
"license": "MIT",
13+
"keywords": [
14+
"session",
15+
"orchestration",
16+
"waves",
17+
"gitlab",
18+
"github",
19+
"quality-gates",
20+
"codex"
21+
],
22+
"skills": "./skills/",
23+
"hooks": "./hooks/hooks-codex.json",
24+
"mcpServers": "./.mcp.json",
25+
"interface": {
26+
"displayName": "Session Orchestrator",
27+
"shortDescription": "Structured engineering sessions for Codex",
28+
"longDescription": "Adds reusable session workflows to Codex: project analysis, wave planning, guided execution, quality gates, persistence, and clean session close-out.",
29+
"developerName": "Bernhard Goetzendorfer",
30+
"category": "Coding",
31+
"capabilities": [
32+
"Interactive",
33+
"Write"
34+
],
35+
"websiteURL": "https://gotzendorfer.at/en/session-orchestrator",
36+
"privacyPolicyURL": "https://gotzendorfer.at/en/session-orchestrator/privacy",
37+
"termsOfServiceURL": "https://gotzendorfer.at/en/session-orchestrator/terms",
38+
"defaultPrompt": [
39+
"Start a structured feature session for this repo",
40+
"Plan a feature PRD and turn it into waves",
41+
"Close the current session with verification"
42+
]
43+
}
44+
}
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"mcpServers": {
3+
"session-orchestrator": {
4+
"command": "bash",
5+
"args": ["-c", "exec bash \"${CLAUDE_PLUGIN_ROOT:-${CODEX_PLUGIN_ROOT:-$(git rev-parse --show-toplevel)}}/scripts/mcp-server.sh\""]
6+
}
7+
}
8+
}
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2025 Bernhard Goetzendorfer
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

0 commit comments

Comments
 (0)