# Send Prompt Request Pipeline to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
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

```text
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.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "prompt-request",
    "name": "Prompt Request Pipeline",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/ShunsukeHayashi/prompt-request",
    "canonicalUrl": "https://clawhub.ai/ShunsukeHayashi/prompt-request",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/prompt-request",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=prompt-request",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "examples/sample-hook-config.json",
      "SKILL.md",
      "templates/issue-content.md",
      "templates/issue-detailed.md",
      "templates/issue-simple.md",
      "templates/messageTemplate.txt"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "prompt-request",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-07T11:19:21.494Z",
      "expiresAt": "2026-05-14T11:19:21.494Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=prompt-request",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=prompt-request",
        "contentDisposition": "attachment; filename=\"prompt-request-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "prompt-request"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/prompt-request"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/prompt-request",
    "downloadUrl": "https://openagent3.xyz/downloads/prompt-request",
    "agentUrl": "https://openagent3.xyz/skills/prompt-request/agent",
    "manifestUrl": "https://openagent3.xyz/skills/prompt-request/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/prompt-request/agent.md"
  }
}
```
## Documentation

### Prompt Request Pipeline

Issue を書くだけで、自動実装 → PR → レビュー → マージまで全自動で回るパイプライン。

### Overview

[auto] Issue 起票
  → 🚀 実装開始コメント
  → Phase A: タスク分解（Omega-bridge or Issue本文）
  → 📋 分析完了コメント
  → Phase B: 実装 + テスト
  → ✅ 実装完了コメント
  → Phase C: commit → push → PR作成
  → 🔗 PR作成コメント
  → 自動レビュー → 自動マージ → Issue close

### Prerequisites

OpenClaw Gateway running with hooks enabled
GitHub CLI (gh) authenticated
Git SSH access to target repository
GitHub Webhook pointing to OpenClaw hooks endpoint

### 1. Register GitHub Webhook

On your GitHub repo → Settings → Webhooks → Add webhook:

Payload URL: https://<your-openclaw-endpoint>/hooks/github
Content type: application/json
Secret: Your OpenClaw hooks token
Events: Select individual events:

Issues
Pull requests
Pull request reviews
Check runs
Issue comments
Push

### 2. Configure OpenClaw hooks

Add this to your openclaw.json under hooks.mappings:

{
  "match": { "path": "github" },
  "action": "agent",
  "name": "GitHub",
  "sessionKey": "hook:github:{{repository.name}}:{{headers.x-github-event}}:{{issue.number}}{{pull_request.number}}{{check_run.id}}",
  "messageTemplate": "<see templates/messageTemplate.txt>",
  "deliver": true,
  "allowUnsafeExternalContent": true,
  "channel": "telegram",
  "to": "<your-chat-id>",
  "model": "anthropic/claude-opus-4-6",
  "thinking": "high",
  "timeoutSeconds": 900
}

### 3. Set working directory

In the messageTemplate, replace the working directory path:

WORKDIR variable: where repositories are cloned (e.g., C:\\Users\\you\\Dev or /home/you/dev)

### 4. (Optional) Omega-bridge

If you have Miyabi's omega-bridge for SWML-based task decomposition:

Set the path to omega-bridge.ts in the messageTemplate
If not available, the pipeline falls back to implementing directly from Issue body

### Basic: Create an [auto] Issue

Title: [auto] Add utility function X

Body:
## Requirements
- Create scripts/x.sh with function do_x()
- Add tests in tests/test-x.sh

## Acceptance Criteria
- Function returns expected output
- Tests pass

### Advanced: With agent personality

Title: [auto] [content] Write article about Y

Body:
Read agents/content-agent/AGENTS.md and SOUL.md first.
Follow the rules defined there.

## Topic
...

## Output
- File: articles/y.md
- Word count: 6000

### Advanced: With skill reference

Title: [auto] Generate report with weather data

Body:
Read skills/weather/SKILL.md for API usage.

## Requirements
...

### Issue Events (action=opened)

Early exit check: If action is closed/labeled/etc → 1-line reply, stop
[auto] check: Title starts with [auto] or body contains <!-- auto-implement -->
Phase A: Task decomposition (omega-bridge or direct)
Phase B: Implementation (branch, code, test)
Phase C: Integration (commit, push, PR)
Progress comments posted at each phase

### PR Events (action=opened/synchronize)

Skip bot senders (loop prevention)
Diff review for quality/security
Auto-merge if ALL conditions met:

PR title contains [auto] or branch starts with feature/issue-
Review is LGTM
CI checks pass (or empty = pass)
No merge conflicts

### Safety Rules

Never force push
Never push directly to main
Never run permission commands (icacls/chmod/chown)
Max 3 CI fix retries per PR
Bot sender events are skipped

### Configuration Options

OptionDefaultDescriptionmodelclaude-opus-4-6Model for hook sessionsthinkinghighThinking leveltimeoutSeconds900Max execution time (15 min)delivertrueSend results to chatchanneltelegramDelivery channel

### Performance (measured)

MetricBefore optimizationAfter optimizationclose/push events8-12 min, ~500 tokens3 sec, ~15 tokens[auto] Issue → merged PRN/A (stuck)~5 minFull pipeline (Issue → merge)N/A~5 min

### Tips

Keep Issues small: 1 Issue = 1 clear deliverable, ≤300 lines of diff
Be specific: The quality of the Issue body directly determines output quality
Use templates: Create Issue templates for recurring task types
Reference skills: Point the agent to relevant SKILL.md files for domain knowledge
Reference agent definitions: Store AGENTS.md/SOUL.md in the repo for consistent behavior
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: ShunsukeHayashi
- Version: 1.0.0
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-05-07T11:19:21.494Z
- Expires at: 2026-05-14T11:19:21.494Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/prompt-request)
- [Send to Agent page](https://openagent3.xyz/skills/prompt-request/agent)
- [JSON manifest](https://openagent3.xyz/skills/prompt-request/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/prompt-request/agent.md)
- [Download page](https://openagent3.xyz/downloads/prompt-request)