ranker-agentic-workflow
v0.8.0
Published
Minimal but powerful agentic workflow initializer (agents, skills, tasks) for coding teams and AI assistants.
Maintainers
Readme
Ranker Agentic Workflow
A minimal but complete agentic delivery system with strong defaults, real gates, and multi-agent compatibility.
Core Capabilities
- Multi-agent contracts:
AGENTS.md,CLAUDE.md,OPENCODE.md,AI-WORKFLOW.md - Baseline + advanced skills for feature delivery
- Specialized task templates (API, data, UI, performance, incident hotfix)
- Real execution command with gates:
run - Team CI command:
ci-check - Workflow benchmark command:
benchmark - Upgrade command for existing repos:
migrate - Dashboard command:
status - Smart run cache for faster repeated checks
- Risk engine and policy enforcement
- Autopilot reliability loop for weaker models
- Project context indexing (local RAG-ready index)
- Auto-tuning from run metrics
- Installation profiles and domain packs
Install
From npm (after package is published):
npx ranker-agentic-workflow init my-projectFrom GitHub (works immediately, even before npm publish):
npx github:ranker-002/ranker-workflow init my-projectInteractive wizard:
npx ranker-agentic-workflow init my-project --interactiveAdvanced install:
npx ranker-agentic-workflow init my-project \
--agents codex,claude,opencode \
--profile strict \
--packs backend,data,securityTroubleshooting Install
If you get npm ERR! 404 Not Found for ranker-agentic-workflow, the package is not published yet on npm.
Use GitHub source directly:
npx github:ranker-002/ranker-workflow init my-projectUse the same GitHub prefix for any command:
npx github:ranker-002/ranker-workflow ci-check .
npx github:ranker-002/ranker-workflow feature auth-hardening --type api
npx github:ranker-002/ranker-workflow run .ultra-workflow/tasks/feature.ymlTip: once npm publication is confirmed, switch back to npx ranker-agentic-workflow ....
Commands
npx ranker-agentic-workflow feature auth-hardening --type api --title "Harden login API"
npx ranker-agentic-workflow feature --wizard
npx ranker-agentic-workflow run .ultra-workflow/tasks/feature-api.yml --review-approved --docs-updated
npx ranker-agentic-workflow run .ultra-workflow/tasks/feature-api.yml --strict-manual-gates
npx ranker-agentic-workflow run --auto --plan-only
npx ranker-agentic-workflow run --auto --review-approved --docs-updated
npx ranker-agentic-workflow validate .ultra-workflow/tasks
npx ranker-agentic-workflow doctor . --fix
npx ranker-agentic-workflow ci-check . --task .ultra-workflow/tasks/feature.yml
npx ranker-agentic-workflow benchmark .
npx ranker-agentic-workflow migrate .
npx ranker-agentic-workflow migrate . --dry-run
npx ranker-agentic-workflow status .
npx ranker-agentic-workflow autopilot .ultra-workflow/tasks/feature.yml --strict-manual-gates
npx ranker-agentic-workflow index .
npx ranker-agentic-workflow risk .ultra-workflow/tasks/feature-api.yml
npx ranker-agentic-workflow tune . --applyStrict Manual Gates
When using --strict-manual-gates, review/docs gates require evidence directly in task files:
review_evidence:
approver: "team-handle"
reference: "PR-123 or review URL"
docs_evidence:
updated_files:
- "README.md"Packs
backenddatafrontendsecurityperformance
Operator Docs
.ultra-workflow/references/operator-guide.md.ultra-workflow/references/cookbook.md.ultra-workflow/references/failure-modes.md.ultra-workflow/references/packs.md
CI
Template workflow is provided at .github/workflows/ranker-agentic-ci.yml.
Additional templates:
.gitlab-ci.ymlbitbucket-pipelines.yml
Go-To-Production
Operational launch pack:
docs/go-to-production/README.mddocs/go-to-production/01-release-checklist.mddocs/go-to-production/02-kpis.mddocs/go-to-production/03-roadmap-30-days.mddocs/go-to-production/04-oss-launch-plan.mddocs/go-to-production/05-npm-publish.md
Demo Video (Remotion)
npm run video:preview
npm run video:render
npm run video:render:v2
npm run video:render:v3
npm run video:render:v3:verticalProject files:
video/remotion/
License
MIT
Release
- CI workflow:
.github/workflows/ci.yml - npm release workflow:
.github/workflows/release.yml - Required secret for publish:
NPM_TOKEN - Local preflight:
npm run release:preflight
