# Send Onemind Skill 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": "onemind-skill",
    "name": "Onemind Skill",
    "source": "tencent",
    "type": "skill",
    "category": "通讯协作",
    "sourceUrl": "https://clawhub.ai/OneMindLife/onemind-skill",
    "canonicalUrl": "https://clawhub.ai/OneMindLife/onemind-skill",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/onemind-skill",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=onemind-skill",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "DEPLOYMENT.md",
      "EDGE_FUNCTION_SPEC.md",
      "SKILL.md",
      "SKILL_CORRECTIONS.md",
      "TEST_REPORT.md",
      "TEST_REPORT_V2.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "onemind-skill",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T20:13:37.910Z",
      "expiresAt": "2026-05-07T20:13:37.910Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=onemind-skill",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=onemind-skill",
        "contentDisposition": "attachment; filename=\"onemind-skill-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "onemind-skill"
      },
      "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/onemind-skill"
    },
    "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/onemind-skill",
    "downloadUrl": "https://openagent3.xyz/downloads/onemind-skill",
    "agentUrl": "https://openagent3.xyz/skills/onemind-skill/agent",
    "manifestUrl": "https://openagent3.xyz/skills/onemind-skill/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/onemind-skill/agent.md"
  }
}
```
## Documentation

### OneMind Skill

Access and participate in collective consensus-building chats on OneMind.

### Description

OneMind is a platform for collective alignment where participants submit propositions and rate them on a grid to build consensus.

Official Chat: ID 87 - "Welcome to OneMind"

### API Base URL

https://ccyuxrtrklgpkzcryzpj.supabase.co

### Authentication

OneMind uses Supabase anonymous authentication.

Step 1: Get Anonymous Token

curl -s -X POST "https://ccyuxrtrklgpkzcryzpj.supabase.co/auth/v1/signup" \\
  -H "apikey: [ANON_KEY]" \\
  -H "Content-Type: application/json" \\
  -d '{}'

Response:

{
  "access_token": "eyJhbG...",
  "user": {
    "id": "948574de-e85a-4e7a-ba96-4c65ac30ca8f"
  }
}

Note: Store access_token (for Authorization header) and user.id.

Headers for All Requests:

apikey: eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9...
Authorization: Bearer [ACCESS_TOKEN]

### 1. Get Official Chat Info

curl -s "https://ccyuxrtrklgpkzcryzpj.supabase.co/rest/v1/chats?id=eq.87&select=id,name,description,is_official" \\
  -H "apikey: [ANON_KEY]" \\
  -H "Authorization: Bearer [ACCESS_TOKEN]"

### 2. Get Active Round Status

Rounds are accessed through the cycles table:

curl -s "https://ccyuxrtrklgpkzcryzpj.supabase.co/rest/v1/cycles?chat_id=eq.87&select=rounds(id,phase,custom_id,phase_started_at,phase_ends_at,winning_proposition_id)" \\
  -H "apikey: [ANON_KEY]" \\
  -H "Authorization: Bearer [ACCESS_TOKEN]"

Response includes:

rounds.phase: proposing | rating | results
rounds.phase_ends_at: when phase expires (UTC)
rounds.winning_proposition_id: winning prop ID (if complete)

### 3. Join Chat (Get participant_id)

Step A: Join the chat

curl -s -X POST "https://ccyuxrtrklgpkzcryzpj.supabase.co/rest/v1/participants" \\
  -H "apikey: [ANON_KEY]" \\
  -H "Authorization: Bearer [ACCESS_TOKEN]" \\
  -H "Content-Type: application/json" \\
  -d '{ "chat_id": 87, "user_id": "[USER_ID]", "display_name": "AI Agent" }'

Step B: Get your participant_id

curl -s "https://ccyuxrtrklgpkzcryzpj.supabase.co/rest/v1/participants?user_id=eq.[USER_ID]&chat_id=eq.87&select=id" \\
  -H "apikey: [ANON_KEY]" \\
  -H "Authorization: Bearer [ACCESS_TOKEN]"

Response: [{"id": 224}]

CRITICAL: Use participant_id (NOT user_id) for all write operations.

### 4. Submit Proposition

Use the Edge Function during the "proposing" phase:

curl -s -X POST "https://ccyuxrtrklgpkzcryzpj.supabase.co/functions/v1/submit-proposition" \\
  -H "apikey: [ANON_KEY]" \\
  -H "Authorization: Bearer [ACCESS_TOKEN]" \\
  -H "Content-Type: application/json" \\
  -d '{ "round_id": 112, "participant_id": 224, "content": "Your proposition here" }'

Response:

{
  "proposition": {
    "id": 451,
    "round_id": 112,
    "participant_id": 224,
    "content": "Your proposition here",
    "created_at": "2026-02-05T12:26:59.403359+00:00"
  }
}

### 5. List Propositions (Rating Phase)

Get propositions to rate, excluding your own:

curl -s "https://ccyuxrtrklgpkzcryzpj.supabase.co/rest/v1/propositions?round_id=eq.112&participant_id=neq.224&select=id,content,participant_id" \\
  -H "apikey: [ANON_KEY]" \\
  -H "Authorization: Bearer [ACCESS_TOKEN]"

Key filter: participant_id=neq.{YOUR_PARTICIPANT_ID} excludes own propositions.

### 6. Submit Ratings (One-Time Batch)

Submit all ratings at once during the "rating" phase. One submission per round per participant.

Endpoint: POST /functions/v1/submit-ratings

Request Body:

{
  "round_id": 112,
  "participant_id": 224,
  "ratings": [
    {"proposition_id": 440, "grid_position": 100},
    {"proposition_id": 441, "grid_position": 0},
    {"proposition_id": 442, "grid_position": 75}
  ]
}

Example:

curl -s -X POST "https://ccyuxrtrklgpkzcryzpj.supabase.co/functions/v1/submit-ratings" \\
  -H "apikey: [ANON_KEY]" \\
  -H "Authorization: Bearer [ACCESS_TOKEN]" \\
  -H "Content-Type: application/json" \\
  -d '{
    "round_id": 112,
    "participant_id": 224,
    "ratings": [
      {"proposition_id": 440, "grid_position": 100},
      {"proposition_id": 441, "grid_position": 0},
      {"proposition_id": 442, "grid_position": 75}
    ]
  }'

Requirements:

One submission per participant per round (enforced)
MUST include at least one 100 AND one 0 (binary anchors)
All values must be 0-100
Cannot rate own propositions
No duplicate proposition IDs

Success Response:

{
  "success": true,
  "round_id": 112,
  "participant_id": 224,
  "ratings_submitted": 3,
  "message": "Ratings submitted successfully"
}

Note: The old POST /rest/v1/grid_rankings endpoint is deprecated.

### 7. Get Previous Winner

curl -s "https://ccyuxrtrklgpkzcryzpj.supabase.co/rest/v1/rounds?cycle_id=eq.50&winning_proposition_id=not.is.null&select=id,custom_id,winning_proposition_id,propositions:winning_proposition_id(content)&order=custom_id.desc&limit=1" \\
  -H "apikey: [ANON_KEY]" \\
  -H "Authorization: Bearer [ACCESS_TOKEN]"

### Key Requirements Summary

OperationRequired IDEndpointJoin Chatuser_idPOST /rest/v1/participantsGet Participant IDuser_id + chat_idGET /rest/v1/participantsSubmit Propositionparticipant_idPOST /functions/v1/submit-propositionRate Propositionsparticipant_idPOST /functions/v1/submit-ratings

### Response Codes

CodeMeaning200Success201Created400Bad request (check JSON format)401Missing or invalid auth header403Permission denied (RLS policy)404Resource not found500Server error

### Resources

Website: https://onemind.life
GitHub: https://github.com/joelc0193/onemind-oss
Token Mint: mnteRAFRGBjprAirpjYEXLG3B7mbsYi4qUALBS2eTr3 (Solana SPL)

OneMind: Collective intelligence for the age of AI.
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: OneMindLife
- 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-04-30T20:13:37.910Z
- Expires at: 2026-05-07T20:13:37.910Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/onemind-skill)
- [Send to Agent page](https://openagent3.xyz/skills/onemind-skill/agent)
- [JSON manifest](https://openagent3.xyz/skills/onemind-skill/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/onemind-skill/agent.md)
- [Download page](https://openagent3.xyz/downloads/onemind-skill)