AI Skill Hub 强烈推荐:AI工作流 是一款优质的Agent工作流。已获得 3.4k 颗 GitHub Star,AI 综合评分 8.2 分,在同类工具中表现稳健。如果你正在寻找可靠的Agent工作流解决方案,这是一个值得深入了解的选择。
AI工作流 是一套完整的 AI Agent 自动化工作流方案。通过可视化的节点编排,将复杂的多步骤任务拆解为清晰的自动化流程,实现全程无人值守的智能处理。支持与数百种外部服务和 API 无缝集成,适合构建数据处理管线、业务自动化和 AI 辅助决策系统。
AI工作流 是一套完整的 AI Agent 自动化工作流方案。通过可视化的节点编排,将复杂的多步骤任务拆解为清晰的自动化流程,实现全程无人值守的智能处理。支持与数百种外部服务和 API 无缝集成,适合构建数据处理管线、业务自动化和 AI 辅助决策系统。
# 方式一:pip 安装(推荐)
pip install aidlc-workflows
# 方式二:虚拟环境安装(推荐生产环境)
python -m venv .venv
source .venv/bin/activate # Windows: .venv\Scripts\activate
pip install aidlc-workflows
# 方式三:从源码安装(获取最新功能)
git clone https://github.com/awslabs/aidlc-workflows
cd aidlc-workflows
pip install -e .
# 验证安装
python -c "import aidlc_workflows; print('安装成功')"
# 命令行使用
aidlc-workflows --help
# 基本用法
aidlc-workflows input_file -o output_file
# Python 代码中调用
import aidlc_workflows
# 示例
result = aidlc_workflows.process("input")
print(result)
# aidlc-workflows 配置文件示例(config.yml) app: name: "aidlc-workflows" debug: false log_level: "INFO" # 运行时指定配置文件 aidlc-workflows --config config.yml # 或通过环境变量配置 export AIDLC_WORKFLOWS_API_KEY="your-key" export AIDLC_WORKFLOWS_OUTPUT_DIR="./output"
| Feature | Description |
|---|---|
| **Adaptive Intelligence** | Only executes stages that add value to your specific request |
| **Context-Aware** | Analyzes existing codebase and complexity requirements |
| **Risk-Based** | Complex changes get comprehensive treatment, simple changes stay efficient |
| **Question-Driven** | Structured multiple-choice questions in files, not chat |
| **Always in Control** | Review execution plans and approve each phase |
| **Extensible** | Layer custom rules e.g. security, compliance, and organization-specific rules on top of the core workflow |
---
Have one of our supported platforms/tools for Assisted AI Coding installed:
| Platform | Installation Link |
|---|---|
| Kiro | [Install](https://kiro.dev/) |
| Kiro CLI | [Install](https://kiro.dev/cli/) |
| Amazon Q Developer IDE Plugin | [Install](https://docs.aws.amazon.com/amazonq/latest/qdeveloper-ug/q-in-IDE.html) |
| Cursor IDE | [Install](https://cursor.com/) |
| Cline VS Code Extension | [Install](https://marketplace.visualstudio.com/items?itemName=saoudrizwan.claude-dev) |
| Claude Code CLI | [Install](https://github.com/anthropics/claude-code) |
| GitHub Copilot | [Install](https://marketplace.visualstudio.com/items?itemName=GitHub.copilot) + [Chat](https://marketplace.visualstudio.com/items?itemName=GitHub.copilot-chat) |
---
---
Instead of manually copying files, let your AI agent handle the setup. This is an experimental workflow — currently validated with Kiro, Claude code, Cursor, Antigravity. Note: This approach requires your agent to have shell access (e.g., Kiro, Claude Code, Cline). For agents without shell access, follow the Common setup above.
Paste this prompt into your AI agent:
Set up AI-DLC in this project by doing the following:
1. Download the latest AI-DLC release:
- Use the GitHub API to find the latest release asset URL:
curl -sL https://api.github.com/repos/awslabs/aidlc-workflows/releases/latest \
| grep -o '"browser_download_url": *"[^"]*"' \
| head -1 \
| cut -d'"' -f4
- Download the zip from that URL to /tmp/aidlc-rules.zip
- Extract it: unzip -o /tmp/aidlc-rules.zip -d /tmp/aidlc-release
- Copy the aidlc-rules/ folder from the extracted contents into .aidlc at the project root
- Clean up: rm -rf /tmp/aidlc-rules.zip /tmp/aidlc-release
2. Create the appropriate rules/steering file for your IDE using the options below.
Pick the one that matches the agent you are running in:
- Kiro IDE or Kiro CLI → create `.kiro/steering/ai-dlc.md`
- Amazon Q Developer → create `.amazonq/rules/ai-dlc.md`
- Antigravity → create `.agent/rules/ai-dlc.md`
- Cursor → create `.cursor/rules/ai-dlc.mdc` with frontmatter:
---
description: "AI-DLC workflow"
alwaysApply: true
---
- Cline → create `.clinerules/ai-dlc.md`
- Claude Code → create `CLAUDE.md`
- GitHub Copilot → create `.github/copilot-instructions.md`
- Any other agent → create `AGENTS.md`
3. The file content should be:
When the user invokes AI-DLC, read and follow
`.aidlc/aidlc-rules/aws-aidlc-rules/core-workflow.md` to start the workflow.
4. Add `.aidlc` to `.gitignore` unless I explicitly ask you not to.
5. Confirm what file you created and that `.aidlc` is gitignored.
The agent will download the latest release, create the correct config file for your IDE, and gitignore the .aidlc directory automatically.
Updating AI-DLC — Re-run the prompt above. The agent will download the latest release and overwrite the existing .aidlc/ folder.
---
aidlc-docs/ directory---
.claude/settings.local.json ```
---
For the complete reference of all documentation artifacts generated by the AI-DLC workflow, see docs/GENERATED_DOCS_REFERENCE.md.
---
AI-DLC uses Amazon Q Rules within your project workspace.
The commands below assume you extracted the zip to your Downloads folder so that the resulting path is Downloads/aidlc-rules/. If you used a different location, replace Downloads with your actual folder path.
[!NOTE] Windows users: if you used File Explorer's Extract All... dialog, it defaults to creating a wrapper folder named after the zip (e.g.,ai-dlc-rules-v0.1.8\aidlc-rules\...). Either uncheck/edit that destination so the contents land directly inDownloads\aidlc-rules\(matching the commands below), or prependai-dlc-rules-v<version>\to eachDownloads\path in the commands — substituting<version>with the release you downloaded.
On macOS/Linux:
mkdir -p .amazonq/rules
cp -R ~/Downloads/aidlc-rules/aws-aidlc-rules .amazonq/rules/
cp -R ~/Downloads/aidlc-rules/aws-aidlc-rule-details .amazonq/
On Windows (PowerShell):
New-Item -ItemType Directory -Force -Path ".amazonq\rules"
Copy-Item -Recurse "$env:USERPROFILE\Downloads\aidlc-rules\aws-aidlc-rules" ".amazonq\rules\"
Copy-Item -Recurse "$env:USERPROFILE\Downloads\aidlc-rules\aws-aidlc-rule-details" ".amazonq\"
On Windows (CMD):
mkdir .amazonq\rules
xcopy %USERPROFILE%\Downloads\aidlc-rules\aws-aidlc-rules .amazonq\rules\aws-aidlc-rules\ /E /I
xcopy %USERPROFILE%\Downloads\aidlc-rules\aws-aidlc-rule-details .amazonq\aws-aidlc-rule-details\ /E /I
Your project should look like:
<project-root>/
├── .amazonq/
│ ├── rules/
│ │ ├── aws-aidlc-rules/
│ ├── aws-aidlc-rule-details/
To verify the rules are loaded:
Rules button in the lower right corner..amazonq/rules/aws-aidlc-rules.<img src="./assets/images/q-ide-aidlc-rules-loaded.png?raw=true" alt="AI-DLC Rules in Q Developer IDE plugin" width="700" height="400">
---
description: "AI-DLC (AI-Driven Development Life Cycle) adaptive workflow for software development"
AI-DLC follows a structured three-phase approach that adapts to your project's complexity:
AI-DLC supports an extension system that lets you layer additional rules on top of the core workflow. Extensions are markdown files organized under aws-aidlc-rule-details/extensions/ and grouped by category (e.g., security/, testing/, resiliency/).
Each extension consists of two files placed in the same directory:
security-baseline.md) containing the extension's rules.security-baseline.opt-in.md) containing a structured multiple-choice question presented to the user during Requirements Analysis.At workflow start, AI-DLC scans the extensions/ directory and loads only *.opt-in.md files. During Requirements Analysis, it presents each opt-in prompt to the user. When the user opts in, the corresponding rules file is loaded (derived by naming convention: strip .opt-in.md, append .md). When the user opts out, the rules file is never loaded. Extensions without a matching *.opt-in.md file are always enforced.
Once enabled, extension rules are blocking constraints — at each stage, the model verifies compliance before allowing the stage to proceed.
The extensions/ directory ships with the following (new extensions may be added over time):
aws-aidlc-rule-details/
└── extensions/
├── security/ # Extension category
│ └── baseline/
│ ├── security-baseline.md # Baseline security rules
│ └── security-baseline.opt-in.md # Opt-in prompt
├── testing/ # Extension category
│ └── property-based/
│ ├── property-based-testing.md # Property-based testing rules
│ └── property-based-testing.opt-in.md # Opt-in prompt
├── resiliency/
│ └── baseline/
│ ├── resiliency-baseline.md # Baseline resiliency rules
│ └── resiliency-baseline.opt-in.md # Opt-in prompt
[!IMPORTANT] The security extension rules are provided as a directional reference for building effective security rules within AI-DLC workflows. Each organization should build, customize, and thoroughly test their own security rules before deploying in production workflows. The resiliency extension rules are provided as a directional best practices for building resilient workloads rules within AI-DLC workflows. Each organization should build, customize, and thoroughly test their own resiliency rules before deploying in production workflows.
You can extend an existing category or create an entirely new one.
1. Create a directory under extensions/ (e.g., security/compliance/ or performance/baseline/). 2. Add a rules file (e.g., compliance.md). Follow the same structure as security-baseline.md: - Define each rule as a heading in the format ## Rule <PREFIX-NN>: <Title> where the prefix is a short category identifier and NN is a sequential number (e.g., COMPLIANCE-01, COMPLIANCE-02). These IDs are referenced in audit logs and compliance summaries, so they must be unique across all loaded extensions. - Include a Rule section describing the requirement. - Include a Verification section with concrete checks the model should evaluate. 3. Add a matching opt-in file using the naming convention <name>.opt-in.md (e.g., compliance.opt-in.md). See security-baseline.opt-in.md for the expected format. Omitting this file means the extension is always enforced with no user opt-out. 4. Rules are blocking by default — if verification criteria are not met, the stage cannot proceed until the finding is resolved.
---
高质量的AI工作流管理项目
该工具使用 MIT-0 协议,商用场景请仔细阅读协议条款,必要时咨询法律意见。
AI Skill Hub 为第三方内容聚合平台,本页面信息基于公开数据整理,不对工具功能和质量作任何法律背书。
建议在沙箱或测试环境中充分验证后,再部署至生产环境,并做好必要的安全评估。
📄 MIT-0 — 请查阅原始协议条款了解具体使用限制。
总体来看,AI工作流 是一款质量优秀的Agent工作流,在同类工具中具备一定竞争力。AI Skill Hub 将持续追踪其更新动态,建议收藏备用,结合自身场景选择合适时机引入使用。
| 原始名称 | aidlc-workflows |
| Topics | AI工作流Python |
| GitHub | https://github.com/awslabs/aidlc-workflows |
| License | MIT-0 |
| 语言 | Python |
收录时间:2026-07-07 · 更新时间:2026-07-07 · License:MIT-0 · AI Skill Hub 不对第三方内容的准确性作法律背书。
选择 Agent 类型,复制安装指令后粘贴到对应客户端