# Send Built at GrowthX 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": "growthx-bx-submit",
    "name": "Built at GrowthX",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/gxt-admin/growthx-bx-submit",
    "canonicalUrl": "https://clawhub.ai/gxt-admin/growthx-bx-submit",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/growthx-bx-submit",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=growthx-bx-submit",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T16:55:25.780Z",
      "expiresAt": "2026-05-07T16:55:25.780Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
        "contentDisposition": "attachment; filename=\"network-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/growthx-bx-submit"
    },
    "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/growthx-bx-submit",
    "downloadUrl": "https://openagent3.xyz/downloads/growthx-bx-submit",
    "agentUrl": "https://openagent3.xyz/skills/growthx-bx-submit/agent",
    "manifestUrl": "https://openagent3.xyz/skills/growthx-bx-submit/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/growthx-bx-submit/agent.md"
  }
}
```
## Documentation

### Built at GrowthX — Project Submission

Submit a project to Built at GrowthX, the community builder showcase for GrowthX members.

### When to Use

Activate this skill when the user wants to:

Push, submit, or share a project to Built at GrowthX
Post a project to the GrowthX builder showcase
Publish their build on GrowthX

### Getting an API Key

If the user hasn't configured their API key yet, direct them to:

Go to Built at GrowthX on the GrowthX platform
Navigate to their profile / API key settings
Click Generate API Key — the raw key is shown once, copy it immediately
Set the key in OpenClaw config: add it under skills.entries.growthx-bx-submit.apiKey in ~/.openclaw/openclaw.json, or set the GROWTHX_API_KEY environment variable

The key is tied to the user's GrowthX membership. If their membership lapses, the key stops working.

### API Endpoint

POST https://backend.growthx.club/api/v1/bx/projects/agent

### Authentication

Send the API key in the x-api-key header:

x-api-key: <GROWTHX_API_KEY>

### Request Body (JSON)

Required fields:

FieldTypeConstraintsnamestringMax 100 characters. The project name.taglinestringMax 200 characters. A short one-liner about the project.

Optional fields:

FieldTypeDefaultConstraintsdescriptionstring""Max 2000 characters. Longer project description.categorystring"SaaS"e.g. SaaS, Fintech, Marketplace, EdTech, HealthTech, AI/ML, Developer Tools, E-commercestackstring[][]Tech stack tags, e.g. ["React", "Node.js", "MongoDB"]urlstringnullProject URL (must be a valid URI)statusstring"shipped"One of: shipped, idea, prototyping, betabuildathonstringnullName of a buildathon if this project was built during one

### Example Request

curl -X POST "https://backend.growthx.club/api/v1/bx/projects/agent" \\
  -H "Content-Type: application/json" \\
  -H "x-api-key: $GROWTHX_API_KEY" \\
  -d '{
    "name": "TaskFlow",
    "tagline": "AI-powered task management for remote teams",
    "description": "TaskFlow uses AI to automatically prioritize and assign tasks based on team capacity and deadlines.",
    "category": "SaaS",
    "stack": ["React", "Node.js", "OpenAI", "PostgreSQL"],
    "url": "https://taskflow.app",
    "status": "shipped"
  }' | jq .

### Success Response (201)

{
  "project": {
    "_id": "...",
    "name": "TaskFlow",
    "tagline": "AI-powered task management for remote teams",
    "status": "shipped",
    "creator": { "name": "...", "avatar_url": "..." },
    "weighted_votes": 0,
    "raw_votes": 0
  }
}

### Agent Behavior

When the user asks to submit a project, follow these steps in order:

### Step 1 — Detect Projects in the Workspace

Scan standard project files in the current workspace to discover what the user has built. Only read these files:

Project manifest files:

package.json — name, description, keywords, homepage, repository
pyproject.toml / setup.py / setup.cfg — name, description, urls
Cargo.toml — name, description, repository, keywords
go.mod — module name
pubspec.yaml — name, description, homepage

Documentation:

README.md — project title (first # heading) and opening paragraph
git remote -v — repository URL

Monorepo detection:

For monorepos, check for workspace configs (workspaces in root package.json, pnpm-workspace.yaml, turbo.json, nx.json) or subdirectories with their own manifest files. Each workspace package with its own name/description is a candidate project.

How to infer fields:

FieldHow to Infernamename field from manifest file, or first heading in READMEtaglinedescription field from manifest, or first sentence of READMEdescriptionSummarize from README content and manifest description (1-3 sentences)stackDependencies and devDependencies from manifest (e.g. react → "React", express → "Express", django → "Django")urlhomepage field from manifest, or repository URL from git remotecategoryInfer from dependencies and README (e.g. stripe → "Fintech", next → "SaaS", ML libraries → "AI/ML")statusDefault to "shipped". If README explicitly says WIP/prototype/beta, use that instead.

### Step 2 — Present Discovered Projects

Show the user what you found. If multiple projects were detected (e.g. monorepo packages), list them and ask which one to submit:

I found these projects in your workspace:

project-name — short description
other-project — short description

Which one would you like to submit to Built at GrowthX?

If only one project is detected, present its details directly and ask to confirm.

### Step 3 — Fill in Missing Details

For the selected project, show what was auto-detected and ask the user to fill in or correct anything:

name and tagline are required — if the tagline can't be inferred, ask for it
Show the auto-detected stack, category, url, description, and status and let the user adjust
Default status to "shipped" unless README or context suggests it's still in progress

### Step 4 — Confirm and Submit

Show a final summary of all fields that will be sent:

Submitting to Built at GrowthX:

Name: TaskFlow
Tagline: AI-powered task management for remote teams
Category: SaaS
Stack: React, Node.js, OpenAI, PostgreSQL
URL: https://taskflow.app
Status: shipped

Submit this?

Only after the user confirms, make the API call using curl with the x-api-key header.

### Step 5 — Report Result

On success, tell the user their project was submitted and share the project link if available. On failure, explain the error (see below).

### Error Handling

StatusMeaningWhat to Tell the User401Invalid or revoked API key"Your API key is invalid or has been revoked. Please generate a new one from the Built at GrowthX settings."403Membership not active"Your GrowthX membership is not active. An active membership is required to submit projects."400Validation error (missing name/tagline, field too long, etc.)Show the specific validation error from the response body.
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: gxt-admin
- Version: 1.0.6
## Source health
- Status: healthy
- Source download looks usable.
- Yavira can redirect you to the upstream package for this source.
- Health scope: source
- Reason: direct_download_ok
- Checked at: 2026-04-30T16:55:25.780Z
- Expires at: 2026-05-07T16:55:25.780Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/growthx-bx-submit)
- [Send to Agent page](https://openagent3.xyz/skills/growthx-bx-submit/agent)
- [JSON manifest](https://openagent3.xyz/skills/growthx-bx-submit/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/growthx-bx-submit/agent.md)
- [Download page](https://openagent3.xyz/downloads/growthx-bx-submit)