wjyzhixing GitHub avatar

coding-workflow-toolkit-project-skill-discovery

wjyzhixing

A transparent workflow for daily development, time-limited coding, and product/tech discussions that guides users through clarification, decision-making, implementation, and verification without automating critical judgment.

Stars

18

7-day growth

No data

Forks

1

Open issues

0

License

No data

Last updated

2026-07-30

AI repository intelligence
FR-AI / ANALYSIS

Why it is worth attention

It provides a structured, skill-based approach for AI-assisted delivery that can be installed into popular AI coding tools (Codex, Claude Code), with a non-write policy ensuring safety, and includes concrete examples and templates.

Who it is for

  • Developers using AI coding assistants
  • Teams adopting structured AI workflows
  • Solo developers working under time constraints
  • Technical interview candidates practicing delivery skills

Use cases

  • Rapid prototyping of a minimum viable feature
  • Debugging a production issue with evidence-based approach
  • Conducting an engineering review of current changes
  • Delivering a small feature slice in an existing codebase

Strengths

  • Transparent process with documented decisions, changes, and verification evidence
  • Safe by design: never commits, pushes, or writes to remote
  • Easy installation into Codex/Claude Code with backup of existing skills
  • Includes ready-to-use templates for React, Vue, and Fastify APIs

Considerations

  • Requires users to have Codex or Claude Code installed
  • Workflow is opinionated and may not fit all team cultures
  • No support for remote write operations by design, limiting full CI/CD integration

README quick start

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

极简 Node API 模板

server/ 是一个可独立运行的 Fastify + TypeScript API 起点,提供统一 JSON 响应格式:

  • GET /health:服务健康状态;
  • GET /api/v1/hello:示例业务接口;
  • 其他路径:统一 JSON 404 响应。

启动开发服务:

cd server
npm install
npm run dev

常用命令:

npm test        # 运行 API 契约测试
npm run build   # 编译到 dist/
npm start       # 启动编译产物

两种使用方式

在本仓库中使用

`A

Description

代码工作流引导工具

Related repositories

Similar projects matched by category, topics, and programming language.

Jakubantalik
Featured
Jakubantalik GitHub avatar

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.

AI & Machine LearningAI Agents
1,191
makecindy
Featured
makecindy GitHub avatar

cindy

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.

AI & Machine LearningLarge Language Models
958
mereyabdenbekuly-ctrl
Featured
mereyabdenbekuly-ctrl GitHub avatar

clodex-ide

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.

AI & Machine LearningAI Agents
859