thinking-orbs
A React component library that renders six hand-tuned animated thought orb loading indicators on a plain 2D canvas, with two purpose-tuned sizes and automatic theme detection for AI and agent UIs.
它提供了一种基于skill的结构化AI辅助交付方法,可安装到Codex和Claude Code等流行AI编码工具中,采用不写入代码的安全策略,并包含具体的示例和模板。
一套面向日常开发、限时编码和产品技术讨论的透明工作流。它帮助你更快完成“澄清 → 决策 → 实现 → 验证”,但不会替你做关键判断。
$delivery-report 作为伴随 skill 记录关键决策、实际改动、验证证据与风险,并在结束时按任务类型生成中文报告。整个工作流不会执行 commit、push、PR 或远端写操作。
以下结构基于当前工作区生成,省略 .git/、node_modules/ 与 dist/:
.
├── .agents/
│ └── skills/ # Codex 可发现的 skill 镜像及元数据
├── .gitignore
├── AGENTS.md # 项目级工作流与协作约定
├── README.md
├── coding-workflow.md # 可复用的 AI 辅助交付流程
├── docs/
│ └── assets/
│ └── delivery-workflow.svg
├── examples/
│ └── scheduler-guided-delivery-demo.md
├── install-codex.sh # 安装 skills 到 Codex (~/.codex/skills)
├── install-claude.sh # 安装 skills 到 Claude Code (~/.claude/skills)
├── install-common.sh # 安装脚本共享逻辑(被上面两个 source)
├── react/ # React + Vite 示例
│ ├── src/
│ │ ├── test/setup.ts
│ │ ├── App.test.tsx
│ │ ├── App.tsx
│ │ ├── App.css
│ │ ├── index.css
│ │ └── main.tsx
│ ├── index.html
│ ├── package.json
│ ├── pnpm-lock.yaml
│ ├── tsconfig.app.json
│ ├── tsconfig.json
│ ├── tsconfig.node.json
│ └── vite.config.ts
├── server/ # 独立 Fastify + TypeScript API 模板
│ ├── src/
│ │ ├── app.ts # 路由与统一错误处理
│ │ └── index.ts # 服务启动入口
│ ├── test/
│ │ └── app.test.ts # API 契约测试
│ ├── package.json
│ ├── package-lock.json
│ └── tsconfig.json
├── skills/ # 工作流 skill 源码
│ ├── debug-loop/
│ ├── delivery-report/
│ ├── engineering-review/
│ ├── feature-slice/
│ ├── guided-delivery/
│ └── mvp-delivery/
├── test.md
└── vue/ # Vue + Vite 示例
├── src/
│ ├── App.spec.ts
│ ├── App.vue
│ ├── App.css
│ ├── index.css
│ └── main.ts
├── index.html
├── package.json
├── pnpm-lock.yaml
├── tsconfig.app.json
├── tsconfig.json
├── tsconfig.node.json
└── vite.config.ts
server/ 是一个可独立运行的 Fastify + TypeScript API 起点,提供统一 JSON 响应格式:
GET /health:服务健康状态;GET /api/v1/hello:示例业务接口;启动开发服务:
cd server
npm install
npm run dev
常用命令:
npm test # 运行 API 契约测试
npm run build # 编译到 dist/
npm start # 启动编译产物
`A
代码工作流引导工具
根据分类、Topic 和编程语言匹配的相似项目。
A React component library that renders six hand-tuned animated thought orb loading indicators on a plain 2D canvas, with two purpose-tuned sizes and automatic theme detection for AI and agent UIs.
Cindy is an open-source AI agent that runs locally on your machine, integrates multiple AI harnesses and models, and provides memory, skills, and automation to perform real work in your projects and apps.
Clodex is an open-source, local-first agentic IDE that combines persistent AI tasks, code, terminal, browser, Git, models, memory, and governed execution in one Electron workspace, currently in technical preview.