一键导入
axon-ivy-workflow-guide
Step-by-step guide for creating complete Axon Ivy workflow processes. Use this skill FIRST when building new workflows.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Step-by-step guide for creating complete Axon Ivy workflow processes. Use this skill FIRST when building new workflows.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Rules and best practices for Axon Ivy HTML Dialog implementations including PrimeFaces, PrimeFlex, CSS, JS, and Ivy components.
Rules and patterns for the `com.axonivy.utils.persistence` library — the Axon Ivy community helper around JPA. Covers `AuditableIdEntity`, `AuditableIdDAO`, `CriteriaQueryContext`, and `UpdateQueryContext`. Use whenever Java code in `src/` reads or writes data through a DAO that extends `AuditableIdDAO` or an entity that extends `AuditableIdEntity`.
Rules and patterns for creating, editing, reviewing, and fixing Axon Ivy workflow processes (.p.json files). Use this when working with any .p.json file — including checking existing processes for errors, reviewing script code, or fixing IvyScript issues.
Verification checklist for Axon Ivy process files (.p.json). Use this whenever a .p.json file is created, modified, or reviewed — either after axon-ivy-process skill, or when a user asks to check, verify, or fix a process file for errors.
Master router skill for all requirement clarification, create story, development, review, and testing tasks. Detects user intent and orchestrates the correct path using specialized skills and parallel subagents.
Rules and patterns for sending email from an Axon Ivy project. Covers sender / recipient resolution, subject and body templating, attachments, and the recommended builder pattern for one mail type per class. Use whenever Java code or a process step composes or sends an email.
| name | axon-ivy-workflow-guide |
| description | Step-by-step guide for creating complete Axon Ivy workflow processes. Use this skill FIRST when building new workflows. |
Use this skill when:
Skill: axon-ivy-data
Create Java model classes in src/package/model/:
Skill: axon-ivy-data
Create master data in dataclasses/package/:
.d.json file with workflow state fieldsSkill: axon-ivy-process
Create process in processes/package/:
Skill: axon-ivy-html (see managed-bean.md)
Create beans in src/package/managedbean/ when dialog needs Java logic beyond #{data.xxx}:
@ManagedBean @ViewScopedSkills: axon-ivy-html (see managed-bean.md for bean patterns)
Create dialogs in src_hd/package/:
#{data.xxx} as appropriateSkills: axon-ivy-variable-config, axon-ivy-user-role-config
Update config files:
config/roles.yamlconfig/users.yamlconfig/variables.yaml1. src/package/model/Entity.java
2. src/package/model/EntityStatus.java
3. src/package/repository/EntityRepository.java
4. dataclasses/package/WorkflowMasterData.d.json
5. processes/package/Workflow.p.json
6. src_hd/package/DialogName/DialogName.xhtml
7. src_hd/package/DialogName/DialogNameProcess.p.json
8. config/roles.yaml (update)
Start → Create Entity → Review → Approve/Reject → End
Start → Input Data → AI Generate → Human Review → Approve → End
Start → Create → Manager Approve → Director Approve → End