agentic-ai

by DjangoPengVerified

一套经过生产验证的 OpenClaw + Claude Code 实战知识库:涵盖生产部署、IM 接入、模型配置、安全加固,以及一系列可落地的 AI Agent 业务流项目(小红书发布 / 财务票据 / 智能早报 / CRM / 量化投研 / 密钥巡检自愈)。

144
Stars
113
Forks
Python
Language
8/23/2026
Added
View on GitHubDownload ZIP

⚠️ Third-Party Software Notice

This skill is third-party open-source software developed and hosted independently on GitHub. SkillTip is an informational directory and does not control or maintain the underlying repository. Any security checks displayed are automated and limited in scope. Review the source code before installing.

Read the Terms of Service

Installation

Add to your Claude Code skills directory:

# Add to your Claude Code skills
git clone https://github.com/DjangoPeng/agentic-ai

Getting Started

Guides for using skills like agentic-ai.

Security Report

Verified

Last scanned: —

{
  "status": "PASSED",
  "issues": []
}

README.md

🦞 Agentic AI Architect

OpenClaw 生产部署、Agent 开发与 Claude Code 深度实战的完整知识库

OpenClaw License

这个仓库是什么

一套经过生产验证的 OpenClaw + Claude Code 实战知识库:涵盖生产部署、IM 接入、模型配置、安全加固,以及一系列可落地的 AI Agent 业务流项目(小红书发布 / 财务票据 / 智能早报 / CRM / 量化投研 / 密钥巡检自愈 / 安全审计治理)。

无论你是:

  • 想把 OpenClaw 跑起来的开发者 — 一键部署脚本,30 分钟从零到能用
  • 想让 Agent 接入微信/企微/飞书的用户 — 逐步指南,扫码即用
  • 想在团队中落地 AI Agent 的技术负责人 — 生产级配置、安全架构、成本控制
  • 想系统学习 AI 业务流架构的学员 — 配套课程《AI 业务流架构师》全部教辅资料

都可以直接使用。

快速导航

我想……去这里
在云服务器上部署 OpenClawopenclaw-infra/
让 Agent 接入微信openclaw-im/wechat-clawbot.md
让 Agent 接入企业微信openclaw-im/wecom-bot.md
让 Agent 接入飞书openclaw-im/feishu-openclaw.md
查看完整的 openclaw.json 配置模板openclaw.json.example
配置火山引擎 Coding Plan(国产模型包月)openclaw-models/volcengine-coding-plan.md
配置 Hotai 代理(海外旗舰模型)openclaw-models/hotai-api.md
排查部署问题openclaw-infra/checklists/troubleshooting.md
安全加固检查openclaw-infra/checklists/security-checklist.md
给 Agent 铸造灵魂(SOUL.md 设计)openclaw-soul/
配置心跳巡检与定时任务openclaw-heartbeat/
开发自定义 Skill(SKILL.md 编写)openclaw-skills/
云端部署小红书自动发布 Agentxhs-auto-publisher/
全自动财务填报与票据识别 Agentfinancial-automation/
多平台智能早报管家(信号分诊 + 三关口编辑)morning-newspaper/
CRM 会议资产沉淀(四段式架构 + 历史强值保护)CRM-Assistant/
在终端用 Claude Code 做多文件协同与代码级重构claude-code/
从零构建 AI 量化投研系统(年报解析 → 研判 → 出图 → HTML 报告)ai-quant-cli/
让 OpenClaw 经 ACP 调度 Claude Code 巡检 GitHub 密钥泄露github-secret-auditor/
让 OpenClaw 用 Claude Code 给自己做上线前安全审计与生产治理security-guardian/

目录结构

.
├── openclaw.json.example            # OpenClaw 完整配置模板(脱敏)
├── openclaw-infra/                   # 基础设施:部署、守护进程、安全穿透
│   ├── README.md                     #   OpenClaw 部署指南
│   ├── configs/
│   │   ├── .env.example              #   环境变量模板(6 种 API 提供商)
│   │   └── openclaw.service          #   systemd 服务文件
│   ├── scripts/
│   │   ├── setup-openclaw.sh         #   一键部署脚本(交互式)
│   │   └── commands-cheatsheet.sh    #   运维命令速查卡
│   └── checklists/
│       ├── security-checklist.md     #   安全配置检查清单
│       └── troubleshooting.md        #   常见问题排错指南(9 个场景)
│
├── openclaw-im/                      # IM 渠道接入
│   ├── wechat-clawbot.md             #   微信 ClawBot 接入指南
│   ├── wecom-bot.md                  #   企业微信长连接机器人接入指南
│   └── feishu-openclaw.md            #   飞书原生深度集成指南
│
├── openclaw-models/                  # 模型配置与成本控制
│   ├── volcengine-coding-plan.md     #   火山引擎 Coding Plan 购买与配置
│   └── hotai-api.md                  #   Hotai2API 海外模型代理接入
│
├── openclaw-soul/                    # 人格工程:SOUL.md 与 AGENTS.md 设计模板
│   ├── README.md                     #   SOUL.md 四层建造法 + AGENTS.md 权限矩阵指南
│   ├── lesson05-lab.md               #   第5节实验手册(可直接跟着操作)
│   ├── templates/
│   │   ├── SOUL.md.example           #   通用模板(带注释的四层结构)
│   │   └── AGENTS.md.example         #   通用模板(权限矩阵 + 记忆管理)
│   └── examples/
│       ├── dev-assistant/            #   研发助手完整配置(课程实战版)
│       ├── biz-assistant/            #   业务管家完整配置
│       └── devops-agent/             #   DevOps 运维场景(社区案例)
│
├── openclaw-heartbeat/                # 心跳引擎:Heartbeat + Cron 自动化
│   ├── README.md                     #   Cron vs Heartbeat 选型 + 四条黄金法则
│   ├── lesson06-lab.md               #   第6节实验手册(可直接跟着操作)
│   ├── templates/
│   │   └── HEARTBEAT.md.example      #   通用模板(带注释的四步法骨架)
│   └── examples/
│       ├── morning-briefing-heartbeat.md  #  多轮资讯日报巡检配置
│       └── memory-guardian-heartbeat.md   #  记忆守护巡检配置(含资讯巡检)
│
├── openclaw-skills/                  # 技能开发:SKILL.md 规范与自定义 Skill 编写
│   ├── README.md                     #   SKILL.md 规范指南(结构、字段、开发规范)
│   ├── lesson09-lab.md               #   第9节实验手册(可直接跟着操作)
│   ├── templates/
│   │   └── SKILL.md.example          #   通用模板(带注释的 Frontmatter + Body 骨架)
│   └── examples/
│       └── crypto-monitor/
│           └── SKILL.md              #   加密货币行情巡检 Skill(课程实战版)
│
├── ai-quant-cli/                     # 第18节:从空目录造 AI 量化投研系统(解析 → 研判 → 出图 → HTML 报告)
├── github-secret-auditor/            # 第19节:OpenClaw 经 ACP 调度 Claude Code 巡检 GitHub 密钥泄露(夜间代码自愈)
├── security-guardian/                # 第20节:企业级数字员工安全审计与生产治理(OpenClaw 自审计控制台 + Claude Code)
├── claude-code/                      # 第16-17节:Claude Code 深度实战(多文件协同 + 终端级重构)
├── xhs-auto-publisher/               # 第12节:云端小红书图文自动发布 Agent(Playwright + 龙虾通知)
├── financial-automation/             # 第13节:全自动财务填报与票据识别 Agent(OCR + 飞书 Bitable)
├── morning-newspaper/               # 第14节:多平台智能早报管家(信号分诊 + 三关口 LLM 编辑 + 飞书推送)
└── CRM-Assistant/                   # 第15节:CRM 会议资产沉淀(四段式架构 + 历史强值保护 + 飞书两表)

📂 openclaw-infra/ — 基础设施

文件说明
README.md完整部署指南:一键部署、手动部署、Tailscale 穿透、Gateway 认证
configs/.env.example环境变量模板(6 种 API 提供商)
configs/openclaw.servicesystemd 服务文件
scripts/setup-openclaw.sh一键部署脚本(交互式)
scripts/commands-cheatsheet.sh运维命令速查卡
checklists/security-checklist.md安全配置检查清单
checklists/troubleshooting.md常见问题排错指南(9 个场景)

📂 openclaw-im/ — IM 渠道接入

文件说明
wechat-clawbot.md微信 ClawBot 接入:官方插件,一条命令 + 扫码
wecom-bot.md企业微信长连接机器人:免公网 IP,支持群聊 + 文档 MCP
feishu-openclaw.md飞书原生深度集成

📂 openclaw-models/ — 模型配置与成本控制

文件说明
hotai-api.mdHotai2API:国内直连海外旗舰模型(GPT-5.4 / Claude Opus 4.6)
volcengine-coding-plan.md火山引擎 Coding Plan:国产模型包月,含 Embedding 配置

📂 openclaw-soul/ — 人格工程

文件说明
README.mdSOUL.md 四层建造法 + AGENTS.md 权限矩阵设计指南
templates/SOUL.md.example通用模板:带注释的四层结构(Identity → Style → Rules → Boundaries)
templates/AGENTS.md.example通用模板:三级权限矩阵 + 记忆管理 + 群聊准则 + 错误处理
examples/dev-assistant/研发助手完整配置(课程实战版,含 SOUL.md + AGENTS.md)
examples/biz-assistant/业务管家完整配置
examples/devops-agent/DevOps 运维场景(社区案例赏析)

📂 openclaw-heartbeat/ — 心跳与定时任务

文件说明
README.mdCron vs Heartbeat 选型指南 + HEARTBEAT.md 四条黄金法则
lesson06-lab.md第6节实验手册:Cron + Heartbeat 组合实战
templates/HEARTBEAT.md.example通用模板:带注释的四步法骨架(条件→判断→动作→静默)
examples/morning-briefing-heartbeat.md多轮资讯日报巡检配置(配合两个 Cron 任务使用)
examples/memory-guardian-heartbeat.md记忆守护巡检配置(含资讯巡检 + 记忆归档检查)

📂 openclaw-skills/ — 自定义 Skill 开发

文件说明
README.mdSKILL.md 规范指南:文件结构、关键字段、开发规范、Cron 集成
lesson09-lab.md第9节实验手册:CoinGecko 注册 → 环境变量 → 创建 Skill → 手动测试 → Cron 定时
templates/SKILL.md.example通用模板:带注释的 Frontmatter + Markdown Body 骨架(复制即用)
examples/crypto-monitor/SKILL.md加密货币行情巡检 Skill 完整配置(课程实战版,含异常处理 + Cron)

📂 CRM-Assistant/ — CRM 会议资产沉淀

文件说明
README.md四段式架构(接入→理解→判断→沉淀)+ 快速开始 + 飞书写表指南
lesson15-lab.md第15节实验手册:建表 → 部署 → 配置 → 本地验证 → 模拟写表 → 真实落表 → Skill 注册
scripts/crm_assistant.pyPython CLI 主入口,覆盖接入/理解/判断/沉淀完整链路
references/llm_prompt_template.mdPrompt 模板:每个字段的判断标准、证据口径、边界条件
references/llm_output_schema.mdSchema 约束:输出 JSON 结构、字段名、枚举值
skills/crm-assistant/SKILL.mdOpenClaw Skill 入口契约

部署架构

┌─────────────────────────────────────────────┐
│  你的笔记本 / 手机                            │
│  (安装 Tailscale 客户端)                      │
└──────────────┬──────────────────────────────┘
               │ WireGuard 加密隧道
               │ (零公网 IP,Shodan 不可见)
┌──────────────▼──────────────────────────────┐
│  你的云服务器(¥99/年)                        │
│  ┌────────────────────────────────────────┐  │
│  │ Tailscale Serve (HTTPS, 仅 tailnet)   │  │
│  │         ↓                              │  │
│  │ OpenClaw Gateway (127.0.0.1:18789)    │  │
│  │         ↑                              │  │
│  │ systemd 守护进程 (崩溃自动重启)         │  │
│  └────────────────────────────────────────┘  │
│  数据主权:SOUL.md / 记忆 / 会话 全在你的磁盘  │
└─────────────────────────────────────────────┘

核心安全设计:

  • 零公网 IP — 服务器不暴露任何端口,对 Shodan / Censys 完全不可见
  • WireGuard 端到端加密 — 所有流量经 Tailscale 加密隧道
  • Gateway Token 认证 — 即使进入 tailnet,仍需令牌才能操作
  • 127.0.0.1 绑定 — Gateway 只监听本机回环地址,外部无法直连

完整部署步骤见 openclaw-infra/README.md

安全要点

⚠️ 部署完成后,务必对照 security-checklist.md 逐项检查

  • 2026 年初 13.5 万个 OpenClaw 实例因端口暴露被攻击(SecurityScorecard 报告)
  • 永远不要.env 提交到 Git
  • 永远不要将端口绑定到 0.0.0.0
  • 永远不要在安全组中开放 18789 端口

支持的 API 提供商

本项目通过 OpenAI 兼容格式接入大模型,配置 OPENAI_API_KEY + OPENAI_BASE_URL 即可。

提供商Base URL推荐场景
DeepSeekhttps://api.deepseek.com/v1性价比最高
豆包https://ark.cn-beijing.volces.com/api/v3火山引擎生态
通义千问https://dashscope.aliyuncs.com/compatible-mode/v1阿里云生态
Kimihttps://api.moonshot.cn/v1长上下文场景
OpenAIhttps://api.openai.com/v1海外服务器
硅基流动https://api.siliconflow.cn/v1多模型聚合

详细的模型配置指南见 openclaw-models/ 目录。

配套课程

本仓库同时作为课程《AI 业务流架构师:从 OpenClaw 到 Claude Code 深度实战》的配套教辅资料。课程由彭靖田主讲,共 20 章。

关于作者

彭靖田 — 连续创业者

  • 浙江大学竺可桢学院毕业,加州大学访问学者
  • 谷歌 AI 开发者专家(GDE),谷歌出海创业加速器导师
  • TensorFlow Contributor · Kubeflow Maintainer
  • 畅销书《深入理解 TensorFlow》作者
  • 极客时间 AI 课程累计培训超 10 万学员

参与贡献

欢迎提交 Issue 和 PR!如果你有新的部署场景、排错经验或配置优化,欢迎贡献。

License

MIT License. 详见 LICENSE


⭐ 如果这个仓库对你有帮助,请给一个 Star!

Frequently Asked Questions

What is agentic-ai?

agentic-ai is an open-source ai agents skill for AI coding assistants such as Claude Code, Codex CLI, and ChatGPT, built by DjangoPeng. 一套经过生产验证的 OpenClaw + Claude Code 实战知识库:涵盖生产部署、IM 接入、模型配置、安全加固,以及一系列可落地的 AI Agent 业务流项目(小红书发布 / 财务票据 / 智能早报 / CRM / 量化投研 / 密钥巡检自愈)。. It has 144 GitHub stars.

Is agentic-ai safe to use?

Yes. agentic-ai passed SkillsLLM's automated security scan — a dependency vulnerability audit plus prompt-injection heuristics — with no high-severity issues. You can read the full report in the Security Report section on this page.

How do I install agentic-ai?

Clone the repository with "git clone https://github.com/DjangoPeng/agentic-ai" and add it to your Claude Code skills directory (see the Installation section above).

What programming language is agentic-ai written in?

agentic-ai is primarily written in Python. It is open-source under DjangoPeng on GitHub, so you can review or fork the full source.

Are there alternatives to agentic-ai?

Yes. SkillsLLM lists many other AI Agents skills you can browse and compare side by side. Open the AI Agents category from the badge at the top of this page, or use the Related Skills and comparison links further down to weigh agentic-ai against similar tools.

Comments (0)

No comments yet. Be the first to share your thoughts!

ECC

by affaan-m

10

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

242,21936,702JavaScript
AI Agentsai-agentsanthropicclaude-code
View details
15

An agentic skills framework & software development methodology that works.

234,96620,863Shell
AI Agentsai-agentsbrainstorming
View details

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

185,94028,768JavaScript
AI Agentsai-agentsanthropicclaude-code
View details

cc-switch

by farion1231

3

A cross-platform desktop All-in-One assistant for Claude Code, Codex, OpenCode, OpenClaw, Grok Build & Hermes Agent. Only official website: ccswitch.io

128,8688,826Rust
AI Agentsclaude-codeai-tools
View details

claude-code

by anthropics

Claude Code is an agentic coding tool that lives in your terminal, understands your codebase, and helps you code faster by executing routine tasks, explaining complex code, and handling git workflows - all through natural language commands.

120,03119,897Shell
AI Agents
View details

Developers Also Liked

Based on votes and bookmarks from developers who liked this skill

ECC

by affaan-m

10

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

242,21936,702JavaScript
AI Agentsai-agentsanthropicclaude-code
View details
15

An agentic skills framework & software development methodology that works.

234,96620,863Shell
AI Agentsai-agentsbrainstorming
View details

n8n

by n8n-io

12

Fair-code workflow automation platform with native AI capabilities. Combine visual building with custom code, self-host or cloud, 400+ integrations.

201,88160,308TypeScript
MCP Serversapisai-tools
View details

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

185,94028,768JavaScript
AI Agentsai-agentsanthropicclaude-code
View details

cc-switch

by farion1231

3

A cross-platform desktop All-in-One assistant for Claude Code, Codex, OpenCode, OpenClaw, Grok Build & Hermes Agent. Only official website: ccswitch.io

128,8688,826Rust
AI Agentsclaude-codeai-tools
View details