โ† All skills
Tencent SkillHub ยท Productivity

Setup

Auto-generate project workflow config (docs/workflow.md) from existing PRD and CLAUDE.md with zero questions. Use when user says "set up workflow", "configur...

skill openclawclawhub Free
0 Downloads
0 Stars
0 Installs
0 Score
High Signal

Auto-generate project workflow config (docs/workflow.md) from existing PRD and CLAUDE.md with zero questions. Use when user says "set up workflow", "configur...

โฌ‡ 0 downloads โ˜… 0 stars Unverified but indexed

Install for OpenClaw

Quick setup
  1. Download the package from Yavira.
  2. Extract the archive and review SKILL.md first.
  3. Import or place the package into your OpenClaw setup.

Requirements

Target platform
OpenClaw
Install method
Manual import
Extraction
Extract archive
Prerequisites
OpenClaw
Primary doc
SKILL.md

Package facts

Download mode
Yavira redirect
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
SKILL.md

Validation

  • Use the Yavira download entry.
  • Review SKILL.md after the package is downloaded.
  • Confirm the extracted package contains the expected setup assets.

Install with your agent

Agent handoff

Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.

  1. Download the package from Yavira.
  2. Extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the extracted folder.
New install

I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.

Upgrade existing

I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
2.1.1

Documentation

ClawHub primary doc Primary doc: SKILL.md 7 sections Open source page

/setup

Auto-generate project workflow config from existing PRD and CLAUDE.md. Zero interactive questions โ€” all answers extracted from project data that already exists after /scaffold.

When to use

After /scaffold creates a project, before /plan. Creates docs/workflow.md so /plan and /build can work.

MCP Tools (use if available)

project_info(name) โ€” get project details, detected stack kb_search(query) โ€” search for dev principles, manifest, stack templates codegraph_query(query) โ€” check project dependencies in code graph If MCP tools are not available, fall back to reading local files only.

Steps

  • Detect project root:
  • If $ARGUMENTS is provided, look for a project with that name in the current directory or projects_dir from ~/.solo-factory/defaults.yaml.
  • Otherwise use current working directory.
  • Verify the directory exists and has CLAUDE.md.
  • If not found, ask via AskUserQuestion.
  • Check if already initialized:
  • If docs/workflow.md exists, warn and ask whether to regenerate.
  • Read project data (parallel โ€” all reads at once):
  • CLAUDE.md โ€” tech stack, architecture, commands, Do/Don't
  • docs/prd.md โ€” problem, users, solution, features, metrics, pricing
  • package.json or pyproject.toml โ€” exact dependency versions
  • Makefile โ€” available commands
  • Linter configs (.eslintrc*, eslint.config.*, .swiftlint.yml, ruff.toml, detekt.yml)
  • Read ecosystem sources (optional โ€” enhances quality):
  • Detect stack name from CLAUDE.md (look for "Stack:" or the stack name in tech section).
  • If MCP kb_search available: search for stack template and dev-principles.
  • Otherwise: look for stacks/<stack>.yaml and dev-principles.md in .solo/ or plugin templates directory (if accessible).
  • If neither available: derive all info from CLAUDE.md + package manifest (sufficient).
  • Detect languages from package manifest:
  • package.json โ†’ TypeScript
  • pyproject.toml โ†’ Python
  • *.xcodeproj or Package.swift โ†’ Swift
  • build.gradle.kts โ†’ Kotlin
  • Create docs directory if needed:
  • mkdir -p docs
  • Generate docs/workflow.md:
  • Based on dev-principles (from MCP/KB or built-in defaults):
  • # Workflow โ€” {ProjectName}
  • ## TDD Policy
  • **Moderate** โ€” Tests encouraged but not blocking. Write tests for:
  • Business logic and validation
  • API route handlers
  • Complex algorithms
  • Tests optional for: UI components, one-off scripts, prototypes.
  • ## Test Framework
  • {from package manifest devDeps: vitest/jest/pytest/xctest}
  • ## Commit Strategy
  • **Conventional Commits**
  • Format: `<type>(<scope>): <description>`
  • Types: feat, fix, refactor, test, docs, chore, perf, style
  • ## Verification Checkpoints
  • **After each phase completion:**
  • 1. Run tests โ€” all pass
  • 2. Run linter โ€” no errors
  • 3. Run build โ€” successful (if applicable)
  • 4. Manual smoke test
  • ## Branch Strategy
  • `main` โ€” production-ready
  • `feat/<track-id>` โ€” feature branches
  • `fix/<description>` โ€” hotfixes
  • Update CLAUDE.md โ€” add workflow reference to Key Documents section if not present.
  • Show summary and suggest next step:
  • Setup complete for {ProjectName}!
  • Created:
  • docs/workflow.md โ€” TDD moderate, conventional commits
  • Next: /plan "Your first feature"

CLAUDE.md not found

Cause: Project not scaffolded or running from wrong directory. Fix: Run /scaffold first, or ensure you're in the project root with CLAUDE.md.

workflow.md already exists

Cause: Previously set up. Fix: Skill warns and asks whether to regenerate. Existing file is preserved unless you confirm overwrite.

Wrong test framework detected

Cause: Multiple test frameworks in devDependencies. Fix: Skill picks the first found. Edit docs/workflow.md manually to specify the correct framework.

Category context

Workflow acceleration for inboxes, docs, calendars, planning, and execution loops.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
1 Docs
  • SKILL.md Primary doc