new-agent
- Repo stars 12
- Author repo camunda-ai-dev-kit
Generate an agentic Camunda 8 BPMN process. Find and read the "Agentic BPMN" section of camunda-dev-guide.md for ad-hoc sub-process XML, connector task types, input targets, and fromAi() usage.
$ARGUMENTS
Use the AI Agent Sub-process pattern (recommended):
- Create a
bpmn:adHocSubProcesswithzeebe:taskDefinition type="io.camunda.agenticai:aiagent-job-worker:1" - Add
zeebe:adHoc outputCollection="toolCallResults" outputElement="={id: toolCall._meta.id, name: toolCall._meta.name, content: toolCallResult}"— required for tool result collection - Add
zeebe:taskHeaderswithresultVariable=agent - Add tools as activities inside (no incoming flows, no start/end events)
- Use
fromAi()in tool input mappings for AI-generated parameters - Each tool must write output to
toolCallResultvariable (e.g.resultExpression→={toolCallResult: response.body}) - Add
<bpmn:documentation>to each tool describing what it does - Configure
systemPrompt,userPrompt,modelProvider, andauthentication.apiKey({{secrets.KEY_NAME}})
Tools can also be sub-processes for multi-step async patterns:
- Put a service task (action) followed by a catch event (wait) inside a sub-process
- The sub-process is the tool entry point; inner steps are hidden from the agent
- Use this for send+wait, request+callback, or any tool needing async interaction
- See the "Sub-flow Tool Pattern" section in camunda-dev-guide.md
For non-REST connectors as tools, look up their task type and input targets via the Camunda Docs MCP tool.
Save to resources/. Deploy with c8ctl.
- Fluxly category
- AI
- Author-declared agents
- No explicit declaration found; this is not inferred or tested compatibility
- Static check
- 88 / 100 · heuristic scan, not runtime safety proof
- Author / version / license
- @meyerdan · no license declared
- Fluxly token estimate
- Lean
- Fluxly setup estimate
- Guided setup
- External API key
- Required · Vendor-specific
- Detected OS requirements
- Unspecified
- Runtime requirements
- Unspecified
- Detected file/system behavior
-
- Read-only
- Write / modify
- Shell exec
- Detected network behavior
- External requests
- Install commands
- None (reference only)
Profile is derived at build time from SKILL.md and install vectors. Subject to drift from author intent.
Heads up: 未限定 allowed-tools,默认拥有全部工具权限。
The current SKILL.md does not define a fixed output example. Generate an agentic Camunda 8 BPMN process. Find and read the "Agentic BPMN" section of `camunda-dev-guide.md` for ad-hoc sub-process XML, connector task types, input targets, and `fromAi()` usage. $ARGUMENTS Use the **AI Agent Sub-process** pattern (recommended): …
Generate an agentic Camunda 8 BPMN process. Find and read the "Agentic BPMN" section of `camunda-dev-guide.md` for ad-hoc sub-process XML, connector task types, input targets, and `fromAi()` usage.
$ARGUMENTS
Use the **AI Agent Sub-process** pattern (recommended):
1. Create a `bpmn:adHocSubProcess` with `zeebe:taskDefinition type="io.camunda.agenticai:aiagent-job-worker:1"`
2. Add `zeebe:adHoc outputCollection="toolCallResults" outputElement="={id: toolCall._meta.id, name: toolCall._meta.name, content: toolCallResult}"` — **required** for tool result collection
3. Add `zeebe:taskHeaders` with `resultVariable` = `agent`
4. Add tools as activities inside (no incoming flows, no start/end events)
5. Use `fromAi()` in tool input mappings for AI-generated parameters
6. Each tool **must** write output to `toolCallResult` variable (e.g. `resultExpression` → `={toolCallResult: response.body}`)
7. Add `<bpmn:documentation>` to each tool describing what it does
8. Configure `systemPrompt`, `userPrompt`, `modelProvider`, and `authentication.apiKey` (`{{secrets.KEY_NAME}}`)
Tools can also be **sub-processes** for multi-step async patterns:
- Put a service task (action) followed by a catch event (wait) inside a sub-process
- The sub-process is the tool entry point; inner steps are hidden from the agent
- Use this for send+wait, request+callback, or any tool needing async interaction
- See the "Sub-flow Tool Pattern" section in camunda-dev-guide.md
For non-REST connectors as tools, look up their task type and input targets via the Camunda Docs MCP tool.
Save to resources/. Deploy with c8ctl. Author text anchors workflow facts; Fluxly only indexes current sections, terms, files, and commands.
sections -> no H2/H3 headings
terms -> AI Agent Sub-process · required · must · sub-processes
files/cmd -> camunda-dev-guide.md · fromAi() · bpmn:adHocSubProcess · zeebe:taskDefinition type="io.camunda.agenticai:aiagent-job-worker:1" · zeebe:taskHeaders · resultVariable · toolCallResult · resultExpression
body sha256 -> 3b9919a5f641
Decide Fit First
Design Intent
How To Use It
Boundaries And Review