Create Agents Workflow banner
josenaldo josenaldo

Create Agents Workflow

Productivity community

Description

CLI to scaffold agents workflows (docs + skills + memory + commands) tailored to any stack

Installation

This entry records only its repository, not the path inside it, so there is no exact command to give. Open the source below and copy the folder into ~/.claude/skills/, or the file into ~/.claude/agents/.

README

create-agents-workflow

Scaffolds a **multi-agent workflow** (AGENTS.md + per-agent references + skills + memory + command mapping) into any project, tailored to the chosen stack. Supports Claude Code, Codex, Gemini CLI, GitHub Copilot, and Cursor.

Usage

# Interactive (prompts for everything)
npx @josenaldo/create-agents-workflow

# Current directory
npx @josenaldo/create-agents-workflow .

# Non-interactive (scriptable)
npx @josenaldo/create-agents-workflow my-app --stack ts-node-npm --yes

# Preview without writing
npx @josenaldo/create-agents-workflow my-app --stack go --dry-run

# Limit to specific agents (default: all)
npx @josenaldo/create-agents-workflow my-app --stack ts-node-npm --agents claude,codex

Options

Flag Short Description
--yes -y Accept all defaults (non-interactive)
--stack Base stack (skip prompt)
--overlay Frontend overlay or none (skip prompt)
--agents Comma-separated: claude,codex,gemini,copilot,cursor (default: all)
--dry-run Show what would be generated without writing
--help -h Show help

Interactive mode

Without flags, the CLI asks:

  • Project name (or . for current directory)
  • Base stack (one of: ts-node-npm, js-node-npm, java-gradle, java-spring-gradle, python-uv, go)
  • Frontend overlay (optional: react-mantine, react-mui, or none)
  • Init git / initial commit
  • Seed memory/ directory

Then it:

  1. Copies the agnostic core/ (AGENTS.md, per-agent Layer 2 stubs, work