Loading...
Loading...
Orchestrate full development workflow. Use when implementing features, starting structured development, or user mentions "workflow" or "implement issues".
npx skill4agent add beshkenadze/claude-skills-marketplace dev-workflowmcp__gitea__*mcp__github__*codex --versionmcp__gitea__get_issue_by_index(owner, repo, index)mcp__MCP_DOCKER__get_issue(owner, repo, issue_number)gh issue view {issue_number} --repo {owner}/{repo}git checkout main && git pull origin main
git checkout -b feature/{issue-number}-{slug}git worktree add ../worktrees/feature-{issue}-{slug} feature/{issue}-{slug}cp -R Vendor ../worktrees/feature-{slug}/xcodebuild testnpm testcodex review --base maingemini -p "/code-review"gh copilotopencode -p "review changes"# Codex (detailed P1-P4 findings)
codex review --base main
# OR Gemini (quick quality analysis)
gemini -p "/code-review"
# OR GitHub Copilot (interactive)
gh copilot # then ask: "review my changes against main"
# OR OpenCode (works with any LLM provider)
opencode -p "review my code changes against main branch"git add . && git commit -m "feat(scope): description"
git push -u origin feature/{issue}-{slug}mcp__gitea__create_pull_request(owner, repo, title, body, head, base="main")mcp__MCP_DOCKER__create_pull_request(owner, repo, title, body, head, base)gh pr create --title "title" --body "body" --base main --head feature/{issue}-{slug}git checkout main && git pull origin main
git merge feature/{issue}-{slug} --no-ff && git push origin mainmcp__gitea__edit_issue(owner, repo, index, state="closed")mcp__MCP_DOCKER__update_issue(owner, repo, issue_number, state="closed")gh issue close {issue_number} --repo {owner}/{repo}git worktree remove ../worktrees/feature-{issue}-{slug}
git branch -d feature/{issue}-{slug}feature/42-user-auth✅ Issue #42 implemented
✅ PR #15 created and merged
✅ Issue #42 closed