@conductor-oss/conductor-skills 1.4.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (46) hide show
  1. package/.claude-plugin/marketplace.json +20 -0
  2. package/.claude-plugin/plugin.json +13 -0
  3. package/LICENSE.txt +176 -0
  4. package/README.md +352 -0
  5. package/VERSION +1 -0
  6. package/bin/conductor-skills.js +135 -0
  7. package/commands/conductor-optimize.md +18 -0
  8. package/commands/conductor-scaffold-worker.md +19 -0
  9. package/commands/conductor-setup.md +15 -0
  10. package/commands/conductor.md +15 -0
  11. package/install.ps1 +677 -0
  12. package/install.sh +855 -0
  13. package/package.json +50 -0
  14. package/skills/conductor/SKILL.md +151 -0
  15. package/skills/conductor/examples/ai-agent-loop.md +119 -0
  16. package/skills/conductor/examples/ai-agent-mcp.md +129 -0
  17. package/skills/conductor/examples/create-and-run-workflow.md +50 -0
  18. package/skills/conductor/examples/do-while-loop.md +72 -0
  19. package/skills/conductor/examples/fork-join.md +52 -0
  20. package/skills/conductor/examples/llm-chat.md +61 -0
  21. package/skills/conductor/examples/llm-rag.md +115 -0
  22. package/skills/conductor/examples/monitor-and-retry.md +54 -0
  23. package/skills/conductor/examples/review-workflow.md +67 -0
  24. package/skills/conductor/examples/signal-wait-task.md +36 -0
  25. package/skills/conductor/examples/sub-workflow.md +52 -0
  26. package/skills/conductor/examples/workflows/ai-agent-loop.json +88 -0
  27. package/skills/conductor/examples/workflows/ai-agent-mcp.json +69 -0
  28. package/skills/conductor/examples/workflows/child-normalize.json +21 -0
  29. package/skills/conductor/examples/workflows/do-while-loop.json +35 -0
  30. package/skills/conductor/examples/workflows/fork-join.json +61 -0
  31. package/skills/conductor/examples/workflows/llm-chat.json +28 -0
  32. package/skills/conductor/examples/workflows/llm-rag.json +49 -0
  33. package/skills/conductor/examples/workflows/parent-pipeline.json +35 -0
  34. package/skills/conductor/examples/workflows/weather-notification.json +42 -0
  35. package/skills/conductor/references/api-reference.md +111 -0
  36. package/skills/conductor/references/cli-index.md +92 -0
  37. package/skills/conductor/references/fallback-cli.md +36 -0
  38. package/skills/conductor/references/optimization.md +148 -0
  39. package/skills/conductor/references/orkes.md +57 -0
  40. package/skills/conductor/references/schedules.md +81 -0
  41. package/skills/conductor/references/setup.md +126 -0
  42. package/skills/conductor/references/troubleshooting.md +35 -0
  43. package/skills/conductor/references/visualization.md +49 -0
  44. package/skills/conductor/references/workers.md +227 -0
  45. package/skills/conductor/references/workflow-definition.md +672 -0
  46. package/skills/conductor/scripts/conductor_api.py +396 -0
@@ -0,0 +1,20 @@
1
+ {
2
+ "name": "conductor-skills",
3
+ "owner": {
4
+ "name": "Conductor OSS",
5
+ "email": "conductor-oss@users.noreply.github.com"
6
+ },
7
+ "metadata": {
8
+ "description": "Skills for orchestrating workflows with Conductor"
9
+ },
10
+ "plugins": [
11
+ {
12
+ "name": "conductor",
13
+ "source": "./",
14
+ "description": "Create, run, monitor, and manage Conductor workflows and tasks",
15
+ "version": "1.4.2",
16
+ "category": "devops",
17
+ "tags": ["conductor", "workflow", "orchestration", "microservices"]
18
+ }
19
+ ]
20
+ }
@@ -0,0 +1,13 @@
1
+ {
2
+ "name": "conductor",
3
+ "description": "Create, run, monitor, and manage Conductor workflows and tasks",
4
+ "version": "1.4.2",
5
+ "author": {
6
+ "name": "Conductor OSS",
7
+ "email": "conductor-oss@users.noreply.github.com"
8
+ },
9
+ "homepage": "https://github.com/conductor-oss/conductor-skills",
10
+ "repository": "https://github.com/conductor-oss/conductor-skills",
11
+ "license": "Apache-2.0",
12
+ "keywords": ["conductor", "workflow", "orchestration", "microservices"]
13
+ }
package/LICENSE.txt ADDED
@@ -0,0 +1,176 @@
1
+ Apache License
2
+ Version 2.0, January 2004
3
+ http://www.apache.org/licenses/
4
+
5
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
6
+
7
+ 1. Definitions.
8
+
9
+ "License" shall mean the terms and conditions for use, reproduction,
10
+ and distribution as defined by Sections 1 through 9 of this document.
11
+
12
+ "Licensor" shall mean the copyright owner or entity authorized by
13
+ the copyright owner that is granting the License.
14
+
15
+ "Legal Entity" shall mean the union of the acting entity and all
16
+ other entities that control, are controlled by, or are under common
17
+ control with that entity. For the purposes of this definition,
18
+ "control" means (i) the power, direct or indirect, to cause the
19
+ direction or management of such entity, whether by contract or
20
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
21
+ outstanding shares, or (iii) beneficial ownership of such entity.
22
+
23
+ "You" (or "Your") shall mean an individual or Legal Entity
24
+ exercising permissions granted by this License.
25
+
26
+ "Source" form shall mean the preferred form for making modifications,
27
+ including but not limited to software source code, documentation
28
+ source, and configuration files.
29
+
30
+ "Object" form shall mean any form resulting from mechanical
31
+ transformation or translation of a Source form, including but
32
+ not limited to compiled object code, generated documentation,
33
+ and conversions to other media types.
34
+
35
+ "Work" shall mean the work of authorship, whether in Source or
36
+ Object form, made available under the License, as indicated by a
37
+ copyright notice that is included in or attached to the work
38
+ (an example is provided in the Appendix below).
39
+
40
+ "Derivative Works" shall mean any work, whether in Source or Object
41
+ form, that is based on (or derived from) the Work and for which the
42
+ editorial revisions, annotations, elaborations, or other modifications
43
+ represent, as a whole, an original work of authorship. For the purposes
44
+ of this License, Derivative Works shall not include works that remain
45
+ separable from, or merely link (or bind by name) to the interfaces of,
46
+ the Work and Derivative Works thereof.
47
+
48
+ "Contribution" shall mean any work of authorship, including
49
+ the original version of the Work and any modifications or additions
50
+ to that Work or Derivative Works thereof, that is intentionally
51
+ submitted to the Licensor for inclusion in the Work by the copyright owner
52
+ or by an individual or Legal Entity authorized to submit on behalf of
53
+ the copyright owner. For the purposes of this definition, "submitted"
54
+ means any form of electronic, verbal, or written communication sent
55
+ to the Licensor or its representatives, including but not limited to
56
+ communication on electronic mailing lists, source code control systems,
57
+ and issue tracking systems that are managed by, or on behalf of, the
58
+ Licensor for the purpose of discussing and improving the Work, but
59
+ excluding communication that is conspicuously marked or otherwise
60
+ designated in writing by the copyright owner as "Not a Contribution."
61
+
62
+ "Contributor" shall mean Licensor and any individual or Legal Entity
63
+ on behalf of whom a Contribution has been received by the Licensor and
64
+ subsequently incorporated within the Work.
65
+
66
+ 2. Grant of Copyright License. Subject to the terms and conditions of
67
+ this License, each Contributor hereby grants to You a perpetual,
68
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
69
+ copyright license to reproduce, prepare Derivative Works of,
70
+ publicly display, publicly perform, sublicense, and distribute the
71
+ Work and such Derivative Works in Source or Object form.
72
+
73
+ 3. Grant of Patent License. Subject to the terms and conditions of
74
+ this License, each Contributor hereby grants to You a perpetual,
75
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
76
+ (except as stated in this section) patent license to make, have made,
77
+ use, offer to sell, sell, import, and otherwise transfer the Work,
78
+ where such license applies only to those patent claims licensable
79
+ by such Contributor that are necessarily infringed by their
80
+ Contribution(s) alone or by combination of their Contribution(s)
81
+ with the Work to which such Contribution(s) was submitted. If You
82
+ institute patent litigation against any entity (including a
83
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
84
+ or a Contribution incorporated within the Work constitutes direct
85
+ or contributory patent infringement, then any patent licenses
86
+ granted to You under this License for that Work shall terminate
87
+ as of the date such litigation is filed.
88
+
89
+ 4. Redistribution. You may reproduce and distribute copies of the
90
+ Work or Derivative Works thereof in any medium, with or without
91
+ modifications, and in Source or Object form, provided that You
92
+ meet the following conditions:
93
+
94
+ (a) You must give any other recipients of the Work or
95
+ Derivative Works a copy of this License; and
96
+
97
+ (b) You must cause any modified files to carry prominent notices
98
+ stating that You changed the files; and
99
+
100
+ (c) You must retain, in the Source form of any Derivative Works
101
+ that You distribute, all copyright, patent, trademark, and
102
+ attribution notices from the Source form of the Work,
103
+ excluding those notices that do not pertain to any part of
104
+ the Derivative Works; and
105
+
106
+ (d) If the Work includes a "NOTICE" text file as part of its
107
+ distribution, then any Derivative Works that You distribute must
108
+ include a readable copy of the attribution notices contained
109
+ within such NOTICE file, excluding any notices that do not
110
+ pertain to any part of the Derivative Works, in at least one
111
+ of the following places: within a NOTICE text file distributed
112
+ as part of the Derivative Works; within the Source form or
113
+ documentation, if provided along with the Derivative Works; or,
114
+ within a display generated by the Derivative Works, if and
115
+ wherever such third-party notices normally appear. The contents
116
+ of the NOTICE file are for informational purposes only and
117
+ do not modify the License. You may add Your own attribution
118
+ notices within Derivative Works that You distribute, alongside
119
+ or as an addendum to the NOTICE text from the Work, provided
120
+ that such additional attribution notices cannot be construed
121
+ as modifying the License.
122
+
123
+ You may add Your own copyright statement to Your modifications and
124
+ may provide additional or different license terms and conditions
125
+ for use, reproduction, or distribution of Your modifications, or
126
+ for any such Derivative Works as a whole, provided Your use,
127
+ reproduction, and distribution of the Work otherwise complies with
128
+ the conditions stated in this License.
129
+
130
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
131
+ any Contribution intentionally submitted for inclusion in the Work
132
+ by You to the Licensor shall be under the terms and conditions of
133
+ this License, without any additional terms or conditions.
134
+ Notwithstanding the above, nothing herein shall supersede or modify
135
+ the terms of any separate license agreement you may have executed
136
+ with Licensor regarding such Contributions.
137
+
138
+ 6. Trademarks. This License does not grant permission to use the trade
139
+ names, trademarks, service marks, or product names of the Licensor,
140
+ except as required for reasonable and customary use in describing the
141
+ origin of the Work and reproducing the content of the NOTICE file.
142
+
143
+ 7. Disclaimer of Warranty. Unless required by applicable law or
144
+ agreed to in writing, Licensor provides the Work (and each
145
+ Contributor provides its Contributions) on an "AS IS" BASIS,
146
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
147
+ implied, including, without limitation, any warranties or conditions
148
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
149
+ PARTICULAR PURPOSE. You are solely responsible for determining the
150
+ appropriateness of using or redistributing the Work and assume any
151
+ risks associated with Your exercise of permissions under this License.
152
+
153
+ 8. Limitation of Liability. In no event and under no legal theory,
154
+ whether in tort (including negligence), contract, or otherwise,
155
+ unless required by applicable law (such as deliberate and grossly
156
+ negligent acts) or agreed to in writing, shall any Contributor be
157
+ liable to You for damages, including any direct, indirect, special,
158
+ incidental, or consequential damages of any character arising as a
159
+ result of this License or out of the use or inability to use the
160
+ Work (including but not limited to damages for loss of goodwill,
161
+ work stoppage, computer failure or malfunction, or any and all
162
+ other commercial damages or losses), even if such Contributor
163
+ has been advised of the possibility of such damages.
164
+
165
+ 9. Accepting Warranty or Additional Liability. While redistributing
166
+ the Work or Derivative Works thereof, You may choose to offer,
167
+ and charge a fee for, acceptance of support, warranty, indemnity,
168
+ or other liability obligations and/or rights consistent with this
169
+ License. However, in accepting such obligations, You may act only
170
+ on Your own behalf and on Your sole responsibility, not on behalf
171
+ of any other Contributor, and only if You agree to indemnify,
172
+ defend, and hold each Contributor harmless for any liability
173
+ incurred by, or claims asserted against, such Contributor by reason
174
+ of your accepting any such warranty or additional liability.
175
+
176
+ END OF TERMS AND CONDITIONS
package/README.md ADDED
@@ -0,0 +1,352 @@
1
+ <p align="center">
2
+ <img src="assets/conductor.png" alt="Conductor" width="120">
3
+ </p>
4
+
5
+ <h1 align="center">Conductor Skills</h1>
6
+
7
+ <p align="center">
8
+ Teach your AI coding agent to create, run, monitor, and manage
9
+ <a href="https://github.com/conductor-oss/conductor">Conductor</a> workflow orchestrations.
10
+ </p>
11
+
12
+ <p align="center">
13
+ <a href="https://github.com/conductor-oss/conductor">
14
+ <img src="https://img.shields.io/github/stars/conductor-oss/conductor?style=social" alt="Star Conductor">
15
+ </a>
16
+ &nbsp;&middot;&nbsp;
17
+ <a href="https://join.slack.com/t/orkes-conductor/shared_invite/zt-3dpcskdyd-W895bJDm8psAV7viYG3jFA">
18
+ <img src="https://img.shields.io/badge/Slack-Join%20Community-4A154B?logo=slack" alt="Join Slack">
19
+ </a>
20
+ &nbsp;&middot;&nbsp;
21
+ <a href="https://github.com/conductor-oss/conductor-skills/blob/main/LICENSE.txt">
22
+ <img src="https://img.shields.io/badge/License-Apache_2.0-blue.svg" alt="License">
23
+ </a>
24
+ </p>
25
+
26
+ ---
27
+
28
+ ## What You Get
29
+
30
+ Once installed, your AI agent can:
31
+
32
+ - **Create** workflow definitions with any task type (HTTP, SWITCH, FORK, WAIT, AI/LLM, MCP, etc.)
33
+ - **Run** workflows synchronously or asynchronously
34
+ - **Monitor** executions and search by status, time, or correlation ID
35
+ - **Manage** workflows — pause, resume, terminate, retry, restart, rerun, skip-task, jump
36
+ - **Signal** WAIT and HUMAN tasks for human-in-the-loop patterns
37
+ - **Schedule** workflows on cron — schedules are part of OSS
38
+ - **Write workers** in Python, JavaScript, Java, Go, C#, Ruby, or Rust
39
+ - **Visualize** workflows as Mermaid diagrams
40
+ - **Review & optimize** existing workflows against a checklist of 19 reliability / performance / security / structure rules
41
+ - **Manage** secrets and webhooks (Orkes)
42
+
43
+ On Claude Code, four slash commands give you direct entry points:
44
+
45
+ | Command | Purpose |
46
+ |---------|---------|
47
+ | `/conductor` | Menu — lists subcommands and natural-language examples |
48
+ | `/conductor-setup` | First-time setup (CLI, server, auth) |
49
+ | `/conductor-optimize` | Review a workflow against the optimization checklist |
50
+ | `/conductor-scaffold-worker` | Generate a worker stub in your language |
51
+
52
+ Everything else (run, status, schedule, retry, signal, visualize, create) works through plain English — no command needed.
53
+
54
+ ---
55
+
56
+ ## Quick Install
57
+
58
+ ### Claude Code Plugin (recommended for Claude users)
59
+
60
+ Install as a Claude Code plugin from the marketplace:
61
+
62
+ ```shell
63
+ /plugin marketplace add conductor-oss/conductor-skills
64
+ /plugin install conductor@conductor-skills
65
+ ```
66
+
67
+ Or test against a local checkout during development:
68
+
69
+ ```shell
70
+ /plugin marketplace add /path/to/conductor-skills
71
+ /plugin install conductor@conductor-skills
72
+ ```
73
+
74
+ ### Install via npm
75
+
76
+ If you have Node.js, you can install through npm — useful in CI and dev containers:
77
+
78
+ ```bash
79
+ # One-off, no global install
80
+ npx @conductor-oss/conductor-skills --agent claude
81
+ npx @conductor-oss/conductor-skills --all
82
+
83
+ # Or globally
84
+ npm install -g @conductor-oss/conductor-skills
85
+ conductor-skills --agent cursor
86
+ conductor-skills --all --upgrade
87
+ conductor-skills --agent cline --uninstall
88
+ ```
89
+
90
+ The npm package bundles all skill content, so it works offline once installed.
91
+
92
+ ### Install for all detected agents
93
+
94
+ One command to auto-detect every supported agent on your system and install globally where possible. Re-run anytime — it only installs for newly detected agents.
95
+
96
+ **macOS / Linux**
97
+ ```bash
98
+ curl -sSL https://conductor-oss.github.io/conductor-skills/install.sh | bash -s -- --all
99
+ ```
100
+
101
+ **Windows (PowerShell)**
102
+ ```powershell
103
+ irm https://conductor-oss.github.io/conductor-skills/install.ps1 -OutFile install.ps1; .\install.ps1 -All
104
+ ```
105
+
106
+ **Windows (cmd)**
107
+ ```cmd
108
+ powershell -c "irm https://conductor-oss.github.io/conductor-skills/install.ps1 -OutFile install.ps1; .\install.ps1 -All"
109
+ ```
110
+
111
+ ### Install for a specific agent
112
+
113
+ These agents don't support global install — run the command from your project directory.
114
+
115
+ **macOS / Linux**
116
+
117
+ | Agent | Command |
118
+ |-------|---------|
119
+ | [Cline](https://github.com/cline/cline) | `curl -sSL https://conductor-oss.github.io/conductor-skills/install.sh \| bash -s -- --agent cline` |
120
+ | [GitHub Copilot](https://github.com/features/copilot) | `curl -sSL https://conductor-oss.github.io/conductor-skills/install.sh \| bash -s -- --agent copilot` |
121
+ | [Amazon Q](https://aws.amazon.com/q/developer/) | `curl -sSL https://conductor-oss.github.io/conductor-skills/install.sh \| bash -s -- --agent amazonq` |
122
+
123
+ **Windows (PowerShell)**
124
+
125
+ | Agent | Command |
126
+ |-------|---------|
127
+ | [Cline](https://github.com/cline/cline) | `irm https://conductor-oss.github.io/conductor-skills/install.ps1 -OutFile install.ps1; .\install.ps1 -Agent cline` |
128
+ | [GitHub Copilot](https://github.com/features/copilot) | `irm https://conductor-oss.github.io/conductor-skills/install.ps1 -OutFile install.ps1; .\install.ps1 -Agent copilot` |
129
+ | [Amazon Q](https://aws.amazon.com/q/developer/) | `irm https://conductor-oss.github.io/conductor-skills/install.ps1 -OutFile install.ps1; .\install.ps1 -Agent amazonq` |
130
+
131
+ **Windows (cmd)**
132
+
133
+ | Agent | Command |
134
+ |-------|---------|
135
+ | [Cline](https://github.com/cline/cline) | `powershell -c "irm https://conductor-oss.github.io/conductor-skills/install.ps1 -OutFile install.ps1; .\install.ps1 -Agent cline"` |
136
+ | [GitHub Copilot](https://github.com/features/copilot) | `powershell -c "irm https://conductor-oss.github.io/conductor-skills/install.ps1 -OutFile install.ps1; .\install.ps1 -Agent copilot"` |
137
+ | [Amazon Q](https://aws.amazon.com/q/developer/) | `powershell -c "irm https://conductor-oss.github.io/conductor-skills/install.ps1 -OutFile install.ps1; .\install.ps1 -Agent amazonq"` |
138
+
139
+ > All other agents are installed globally via the [install all](#install-for-all-detected-agents) command above. You can also use `--agent <name>` for any agent to do a project-level install.
140
+
141
+ That's it — ask your agent to connect to your server (see [Try It](#try-it) below).
142
+
143
+ ---
144
+
145
+
146
+ ## Try It
147
+
148
+ After installing, try these prompts with your agent. Or run the slash command shown in brackets where one exists.
149
+
150
+ **Setup & configure** *(or `/conductor-setup`)*
151
+ - *"Set up Conductor — I want to start a local server"*
152
+ - *"Connect to my Conductor server at https://developer.orkescloud.com/api"*
153
+ - *"Save my Conductor server config as a profile called production"*
154
+ - *"Switch to my staging Conductor profile"*
155
+ - *"How many workflows in dev vs prod?"*
156
+
157
+ **Create & run**
158
+ - *"Create a workflow that calls the GitHub API to get open issues and sends a Slack notification"*
159
+ - *"Create a FORK_JOIN workflow that fetches inventory and pricing in parallel"*
160
+ - *"Run the my-workflow workflow with input {\"userId\": 123}"*
161
+ - *"Run order-processing synchronously and wait until the approval step"*
162
+ - *"Run cleanup-workflow with correlation id daily-2026-05-11"*
163
+
164
+ **Monitor & diagnose**
165
+ - *"Show me all failed workflow executions from the last hour"*
166
+ - *"What's the status of execution abc-123?"*
167
+ - *"Why did wf-789 fail?"*
168
+ - *"Show me the running executions of order-processing"*
169
+
170
+ **Manage**
171
+ - *"Retry all failed executions of my-workflow from today"*
172
+ - *"Pause the running execution xyz-456"*
173
+ - *"Terminate wf-123, customer cancelled"*
174
+ - *"Restart wf-456 on the latest workflow version"*
175
+ - *"Skip the email step in wf-789"*
176
+ - *"Jump wf-789 to fulfill_order"*
177
+
178
+ **Human-in-the-loop**
179
+ - *"Signal the wait task in execution abc-123 with approval: true"*
180
+ - *"Reject the wait task in wf-456 — don't retry"*
181
+ - *"What's blocking wf-789?"*
182
+
183
+ **Schedule** *(part of OSS)*
184
+ - *"Schedule cleanup-workflow to run daily at 2am"*
185
+ - *"Schedule order-report every Monday at 9:30 weekdays only"*
186
+ - *"Pause the cleanup schedule"*
187
+ - *"Show the last 50 scheduled cleanup runs"*
188
+
189
+ **Modify**
190
+ - *"Add an error-handling branch to the order-processing workflow"*
191
+ - *"Add a WAIT task before the payment step in my checkout workflow"*
192
+ - *"Convert the inline JS in compute_pricing to a worker"*
193
+ - *"Extract the fulfillment chunk into a sub-workflow"*
194
+
195
+ **Review & optimize** *(or `/conductor-optimize`)*
196
+ - *"Review the order-processing workflow"*
197
+ - *"Optimize this workflow JSON — what should I fix?"* *(attach a file)*
198
+ - *"Audit weather-notification for missing timeouts and retries"*
199
+ - *"Make this workflow simpler"*
200
+ - *"Are there any secrets being passed through workflow input that shouldn't be?"*
201
+
202
+ **Workers** *(or `/conductor-scaffold-worker`)*
203
+ - *"Write a Python worker that processes image thumbnails"*
204
+ - *"Write a TypeScript worker that validates email addresses"*
205
+ - *"Generate a Go worker that fetches data from a REST API and transforms the response"*
206
+ - *"Scaffold a Java worker for the charge_card task"*
207
+
208
+ **AI / LLM workflows**
209
+ - *"Create a workflow that summarizes text with Claude"*
210
+ - *"Build me an AI agent that lists MCP tools, picks one, and calls it"* — the canonical first-agent flow ([example](skills/conductor/examples/ai-agent-mcp.md))
211
+ - *"Create a RAG workflow that searches my Pinecone index and answers questions with sources"* ([example](skills/conductor/examples/llm-rag.md))
212
+ - *"Build an autonomous agent loop that runs up to 10 think/act/observe iterations"* ([example](skills/conductor/examples/ai-agent-loop.md))
213
+ - *"Add a HUMAN approval step before the agent calls any tool"*
214
+ - *"Create a workflow that classifies support tickets with GPT-4o-mini and routes to the right queue"*
215
+ - *"Index this document into the knowledge base"* — using `LLM_INDEX_TEXT`
216
+ - *"Generate an image from a prompt with DALL-E"* — using `GENERATE_IMAGE`
217
+
218
+ **Visualize**
219
+ - *"Show me a diagram of the order-processing workflow"*
220
+ - *"Render the FORK_JOIN flow as a Mermaid chart"*
221
+
222
+ **Orkes only** — secrets, webhooks (Orkes Conductor required)
223
+ - *"Save STRIPE_KEY as a secret"*
224
+ - *"Create a GitHub webhook that triggers github_pr_handler"*
225
+ - *"List my webhooks"*
226
+
227
+ ---
228
+
229
+ ## Examples
230
+
231
+ Operational:
232
+
233
+ | Example | Description |
234
+ |---------|-------------|
235
+ | [Create and Run a Workflow](skills/conductor/examples/create-and-run-workflow.md) | Define a workflow, register it, and execute it end-to-end |
236
+ | [Monitor and Retry](skills/conductor/examples/monitor-and-retry.md) | Search executions, diagnose failures, and batch-retry |
237
+ | [Signal a Wait Task](skills/conductor/examples/signal-wait-task.md) | Human-in-the-loop with WAIT tasks and external signals |
238
+ | [Review and Optimize](skills/conductor/examples/review-workflow.md) | Apply the optimization checklist to an existing workflow |
239
+
240
+ Design patterns:
241
+
242
+ | Example | Description |
243
+ |---------|-------------|
244
+ | [FORK_JOIN Parallel Branches](skills/conductor/examples/fork-join.md) | Run independent tasks in parallel and converge with JOIN |
245
+ | [DO_WHILE Loop](skills/conductor/examples/do-while-loop.md) | Iteration counter via the self-reference pattern |
246
+ | [SUB_WORKFLOW Composition](skills/conductor/examples/sub-workflow.md) | Compose reusable child workflows under a parent |
247
+
248
+ AI / LLM patterns:
249
+
250
+ | Example | Description |
251
+ |---------|-------------|
252
+ | [Minimum LLM Workflow](skills/conductor/examples/llm-chat.md) | Single `LLM_CHAT_COMPLETE` — building block |
253
+ | [AI Agent with MCP Tools](skills/conductor/examples/ai-agent-mcp.md) | List tools → plan → call → summarize (the canonical first-AI-agent tutorial) |
254
+ | [Autonomous Agent Loop](skills/conductor/examples/ai-agent-loop.md) | ReAct-pattern `DO_WHILE` loop until the LLM decides it's done |
255
+ | [RAG — Retrieval Augmented Generation](skills/conductor/examples/llm-rag.md) | Vector search + grounded LLM answer with sources |
256
+
257
+ Raw JSON workflow definitions live in [skills/conductor/examples/workflows/](skills/conductor/examples/workflows/) — pass any directly to `conductor workflow create`.
258
+
259
+ ## References
260
+
261
+ | Reference | Description |
262
+ |-----------|-------------|
263
+ | [Setup](skills/conductor/references/setup.md) | Install the CLI, choose a server, configure auth, named profiles |
264
+ | [CLI Index](skills/conductor/references/cli-index.md) | Verb → CLI command lookup, grouped by lifecycle / intervention / tasks |
265
+ | [Workflow Definition Schema](skills/conductor/references/workflow-definition.md) | Full JSON schema, every task type, expression syntax |
266
+ | [Writing Workers](skills/conductor/references/workers.md) | SDK examples in Python, JavaScript, Java, Go, C#, Ruby, Rust |
267
+ | [API Reference](skills/conductor/references/api-reference.md) | REST endpoints for direct API access |
268
+ | [Visualization](skills/conductor/references/visualization.md) | Mermaid mappings for every Conductor construct + UI link |
269
+ | [Schedules](skills/conductor/references/schedules.md) | Cron schedules (OSS) — schema, format, idempotency patterns |
270
+ | [Optimization Checklist](skills/conductor/references/optimization.md) | 19 review rules across structure, reliability, performance, security |
271
+ | [Troubleshooting](skills/conductor/references/troubleshooting.md) | Common errors, diagnosis flow, stuck-workflow recovery |
272
+ | [Orkes Enterprise](skills/conductor/references/orkes.md) | Secrets, webhooks (Orkes Conductor only) |
273
+ | [Fallback CLI](skills/conductor/references/fallback-cli.md) | Python REST script equivalents when the CLI isn't available |
274
+
275
+ ## Evaluations
276
+
277
+ The `evaluations/` directory contains automated test scenarios to validate the skill works correctly with your agent. See [evaluations/README.md](evaluations/README.md) for details.
278
+
279
+ ```bash
280
+ python3 scripts/run_evals.py --verbose
281
+ ```
282
+
283
+ ---
284
+
285
+ ## Upgrade
286
+
287
+ Check for a newer version and upgrade all installed agents:
288
+
289
+ **macOS / Linux**
290
+ ```bash
291
+ curl -sSL https://conductor-oss.github.io/conductor-skills/install.sh | bash -s -- --all --upgrade
292
+ ```
293
+
294
+ **Windows**
295
+ ```powershell
296
+ irm https://conductor-oss.github.io/conductor-skills/install.ps1 -OutFile install.ps1; .\install.ps1 -All -Upgrade
297
+ ```
298
+
299
+ Or upgrade a single agent: `--agent <name> --upgrade`
300
+
301
+ ---
302
+
303
+ ## Supported Agents
304
+
305
+ | Agent | Flag | Global install | Project install |
306
+ |-------|------|---------------|-----------------|
307
+ | [Claude Code](https://docs.anthropic.com/en/docs/claude-code) | `claude` | Plugin (via `/plugin marketplace add` + `/plugin install`) — also adds `/conductor*` slash commands | — |
308
+ | [Codex CLI](https://github.com/openai/codex) | `codex` | `~/.codex/AGENTS.md` | `AGENTS.md` |
309
+ | [Gemini CLI](https://github.com/google-gemini/gemini-cli) | `gemini` | `~/.gemini/GEMINI.md` | `GEMINI.md` |
310
+ | [Cursor](https://cursor.com) | `cursor` | `~/.cursor/skills/conductor/SKILL.md` | `.cursor/rules/conductor.mdc` |
311
+ | [Windsurf](https://codeium.com/windsurf) | `windsurf` | `~/.codeium/windsurf/memories/global_rules.md` | `.windsurfrules` |
312
+ | [Cline](https://github.com/cline/cline) | `cline` | — | `.clinerules` |
313
+ | [GitHub Copilot](https://github.com/features/copilot) | `copilot` | — | `.github/copilot-instructions.md` |
314
+ | [Aider](https://aider.chat) | `aider` | `~/.conductor-skills/` + `~/.aider.conf.yml` | `.conductor-skills/` + `.aider.conf.yml` |
315
+ | [Amazon Q](https://aws.amazon.com/q/developer/) | `amazonq` | — | `.amazonq/rules/conductor.md` |
316
+ | [Roo Code](https://github.com/RooVetGit/Roo-Code) | `roo` | `~/.roo/rules/conductor.md` | `.roo/rules/conductor.md` |
317
+ | [Amp](https://ampcode.com) | `amp` | `~/.config/AGENTS.md` | `.amp/instructions.md` |
318
+ | [OpenCode](https://opencode.ai) | `opencode` | `~/.config/opencode/skills/conductor/SKILL.md` | `AGENTS.md` |
319
+
320
+ ---
321
+ ## Uninstall
322
+
323
+ **macOS / Linux**
324
+ ```bash
325
+ # Remove a global install
326
+ curl -sSL https://conductor-oss.github.io/conductor-skills/install.sh | bash -s -- --agent <name> --global --uninstall
327
+
328
+ # Remove a project-level install
329
+ curl -sSL https://conductor-oss.github.io/conductor-skills/install.sh | bash -s -- --agent <name> --uninstall
330
+ ```
331
+
332
+ **Windows (PowerShell)**
333
+ ```powershell
334
+ # Remove a global install
335
+ irm https://conductor-oss.github.io/conductor-skills/install.ps1 -OutFile install.ps1; .\install.ps1 -Agent <name> -Global -Uninstall
336
+
337
+ # Remove a project-level install
338
+ irm https://conductor-oss.github.io/conductor-skills/install.ps1 -OutFile install.ps1; .\install.ps1 -Agent <name> -Uninstall
339
+ ```
340
+
341
+ **Windows (cmd)**
342
+ ```cmd
343
+ powershell -c "irm https://conductor-oss.github.io/conductor-skills/install.ps1 -OutFile install.ps1; .\install.ps1 -Agent <name> -Global -Uninstall"
344
+ ```
345
+
346
+ ---
347
+
348
+ ## License
349
+
350
+ Apache 2.0 — see [LICENSE.txt](LICENSE.txt).
351
+
352
+ Built for [Conductor OSS](https://github.com/conductor-oss/conductor). Enterprise features powered by [Orkes](https://orkes.io).
package/VERSION ADDED
@@ -0,0 +1 @@
1
+ 1.4.2