smithery/rom-orlovich

human-approval

Manages human approval workflow before code execution. Creates Draft PR, notifies stakeholders, waits for approval.

Installation

$ npx skills add smithery/rom-orlovich --skill human-approval

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from smithery/rom-orlovich.

npx skills add smithery/rom-orlovich

Browse all from smithery/rom-orlovich

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Skill metadata

Parsed from SKILL.md frontmatter.

Declared agents claude-code

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 2,596 B
  • docs SUMMARY.md 137 B

History

  1. First recorded snapshot · 0 installs

SKILL.md

Human Approval Skill

No code execution without explicit human approval.

When Required

Executor MUST wait for approval before implementation when:

  • Task comes from webhook (Jira, Sentry, GitHub)
  • Task is classified as COMPLEX
  • PLAN.md modifies critical paths (auth, payments, data)

Approval Flow

Planning creates PLAN.md
       ↓
Draft PR created (github-operations skill)
       ↓
Slack notification sent (slack-operations skill)
       ↓
WAIT for approval signal:
  - GitHub PR comment: "@agent approve" or "LGTM"
  - Slack button click
  - Jira status transition
       ↓
On approval → Executor proceeds
On rejection → Brain re-delegates to planning

Creating Approval Request

1. Create Draft PR

Use github-operations skill:

.claude/skills/github-operations/scripts/create_draft_pr.sh

PR body must include:

  • Summary of PLAN.md
  • List of files to be modified
  • Risk assessment
  • Estimated changes

2. Send Slack Notification

Use slack-operations skill:

.claude/skills/slack-operations/scripts/notify_approval_needed.sh

Message includes:

  • Ticket/issue reference
  • Link to Draft PR
  • Approve/Reject buttons

3. Update Jira (if applicable)

Post comment with:

  • Link to Draft PR
  • Summary of planned changes
  • Request for approval

Approval Signals

Source Approve Reject
GitHub PR @agent approve, LGTM, :+1: @agent reject, :-1:
Slack Approve button Reject button
Jira Status → "Approved" Status → "Rejected"

Check Approval Status

Before executor starts, verify:

# Check if approval exists
gh pr view $PR_NUMBER --json comments,reviews | \
  jq '.reviews[].state == "APPROVED" or
      (.comments[].body | contains("@agent approve") or contains("LGTM"))'

Blocking Executor

If no approval found:

BLOCKED: Awaiting human approval

Draft PR: https://github.com/org/repo/pull/123
Slack notification sent to: #channel

To approve:
  - Comment "@agent approve" on PR
  - Click Approve button in Slack
  - Transition Jira to "Approved"

Timeout Handling

Duration Action
4 hours Send reminder notification
24 hours Escalate to team lead
72 hours Auto-close with "stale" label

Safety

  • Never bypass approval for webhook tasks
  • Log all approval/rejection events
  • Preserve audit trail in PR comments