# Send XferOps Forge 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": "xferops-forge",
    "name": "XferOps Forge",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/parker-xferops/xferops-forge",
    "canonicalUrl": "https://clawhub.ai/parker-xferops/xferops-forge",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/xferops-forge",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=xferops-forge",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "xferops-forge",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-11T07:00:53.729Z",
      "expiresAt": "2026-05-18T07:00:53.729Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=xferops-forge",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=xferops-forge",
        "contentDisposition": "attachment; filename=\"xferops-forge-1.0.5.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "xferops-forge"
      },
      "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/xferops-forge"
    },
    "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/xferops-forge",
    "downloadUrl": "https://openagent3.xyz/downloads/xferops-forge",
    "agentUrl": "https://openagent3.xyz/skills/xferops-forge/agent",
    "manifestUrl": "https://openagent3.xyz/skills/xferops-forge/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/xferops-forge/agent.md"
  }
}
```
## Documentation

### Forge MCP

Project management via MCP (Model Context Protocol).

### Setup

Install the MCP server:

npx -y @xferops/forge-mcp

Configure in your MCP client (e.g., ~/.mcporter/mcporter.json):

{
  "mcpServers": {
    "forge": {
      "command": "npx",
      "args": ["-y", "@xferops/forge-mcp"],
      "env": {
        "FLOWER_URL": "https://forge.xferops.com",
        "FLOWER_TOKEN": "your-api-token"
      }
    }
  }
}

Get your API token from Forge → Settings → API Tokens.

### Teams & Projects

forge_list_teams — List all teams
forge_get_project — Get project with columns and tasks
forge_list_projects — List projects in a team

### Tasks

forge_list_tasks — List tasks (filter by projectId, columnId, assigneeId)
forge_get_task — Get task details
forge_create_task — Create task (projectId, columnId, title required)
forge_update_task — Update task fields
forge_delete_task — Delete a task
forge_move_task — Move to different column
forge_search_tasks — Search by title, description, or ticket number

### Columns

forge_list_columns — List columns in a project
forge_create_column — Create a column
forge_update_column — Update column name/position
forge_delete_column — Delete a column

### Comments

forge_list_comments — List comments on a task
forge_create_comment — Add a comment
forge_update_comment — Edit a comment
forge_delete_comment — Delete a comment

### Users & Members

forge_list_users — List all users
forge_get_current_user — Get authenticated user
forge_list_team_members — List team members
forge_add_team_member — Add user to team
forge_remove_team_member — Remove from team

### Notifications

forge_get_notification_preferences — Get notification settings
forge_update_notification_preferences — Update settings

### Find a ticket by number

mcporter call forge.forge_search_tasks query="#123"

### Create a task

mcporter call forge.forge_create_task \\
  projectId=<id> \\
  columnId=<id> \\
  title="Task title" \\
  description="Details" \\
  priority=HIGH \\
  type=BUG

### Move task to different column

mcporter call forge.forge_move_task \\
  taskId=<id> \\
  columnId=<new-column-id>

### Add a comment

mcporter call forge.forge_create_comment \\
  taskId=<id> \\
  content="Comment text"

### Field Values

Priority: LOW, MEDIUM, HIGH, URGENT

Type: TASK, BUG, STORY

PR fields: prUrl, prNumber, prRepo (for GitHub PR linking)
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: parker-xferops
- Version: 0.1.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-11T07:00:53.729Z
- Expires at: 2026-05-18T07:00:53.729Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/xferops-forge)
- [Send to Agent page](https://openagent3.xyz/skills/xferops-forge/agent)
- [JSON manifest](https://openagent3.xyz/skills/xferops-forge/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/xferops-forge/agent.md)
- [Download page](https://openagent3.xyz/downloads/xferops-forge)