npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@dommaker/workflows

v0.0.6

Published

AI Agent 工作流定义仓库 - Tools, Steps, Workflows, Skills

Readme

@dommaker/workflows

AI Agent 工作流定义仓库 - Tools, Workflows, Contexts

安装

npm install @dommaker/workflows

# 或直接使用 CLI
npx @dommaker/workflows --version

CLI 使用

# 查看版本
workflows --version

# 统计信息
workflows stats

# 列出能力
workflows list workflows
workflows list tools
workflows list contexts
workflows list templates

# 验证 YAML 文件
workflows validate
workflows validate --dir workflows
workflows validate my-workflow.yml

能力统计

| 类型 | 数量 | 说明 | |------|:----:|------| | Workflows | 29 | 完整工作流定义 | | Tools | 113 | 原子工具能力 | | Contexts | 5 | 上下文模板 | | Templates | 3 | 项目模板 |

目录结构

workflows/
├── workflows/          # 工作流定义(29 个)
│   ├── wf-dev.yml        # 开发工作流
│   ├── wf-planning.yml   # 规划流程
│   ├── wf-bugfix.yml     # Bug 修复
│   ├── wf-release.yml    # 发布流程
│   └── ...               # 其他工作流
│
├── tools/              # 工具定义(113 个)
│   ├── core/             # 核心工具(18 个)
│   │   ├── file/           # 文件操作
│   │   ├── git/            # Git 操作
│   │   ├── npm/            # NPM 操作
│   │   ├── docker/         # Docker 操作
│   │   ├── code/           # 代码操作
│   │   └── notification/   # 通知
│   │
│   ├── std/              # 业务工具(93 个)
│   │   ├── analysis/       # 分析类
│   │   ├── design/         # 设计类
│   │   ├── development/    # 开发类
│   │   ├── planning/       # 规划类
│   │   ├── quality/        # 质量类
│   │   ├── deploy/         # 部署类
│   │   ├── bugfix/         # Bugfix 类
│   │   ├── governance/     # 治理类
│   │   ├── evolution/      # 进化类
│   │   └── ...             # 其他
│   │
│   └── ext/              # 外部集成(2 个)
│       └── browser/        # 浏览器自动化
│
├── contexts/           # 上下文模板(5 个)
│   ├── frameworks/       # 框架上下文
│   └── languages/        # 语言上下文
│
├── templates/          # 项目模板(3 个)
│   ├── ci-template.yml
│   ├── iterate.yml
│   └── new-project.yml
│
├── registry/           # 能力注册表
│   └── index.json
│
└── bin/                # CLI
    └── workflows-cli.js

核心工作流

| 工作流 | 说明 | |------|------| | wf-dev | 开发工作流(智能模式判断)| | wf-planning | 规划流程(架构 + tasks.yml)| | wf-bugfix | Bug 修复流程 | | wf-quick | 快速原型流程 | | wf-release | 发布流程 | | wf-validate | 项目验证 | | wf-review | 审核工作流 | | wf-full | 完整开发流程 | | wf-evolution | 系统进化工作流 |

在 runtime 中使用

import { executeWorkflow } from '@dommaker/runtime';

// 自动使用 npm 包中的 workflows
await executeWorkflow('wf-dev', {
  project_path: '~/myapp'
});

自定义 workflows 路径

# 使用本地 workflows
export AGENT_WORKFLOWS_PATH=/path/to/my-workflows

License

MIT