Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/validate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
jq -e '.template.authorName | type == "string"' manifest.json > /dev/null

# Skills shape — every entry needs clawhub_slug + name
jq -e 'all(.skills[]; .clawhub_slug | type == "string" and test("^[a-z0-9-]+/[a-z0-9-]+$"))' manifest.json > /dev/null
jq -e 'all(.skills[]; .clawhub_slug | type == "string" and test("^[a-z0-9-]+$"))' manifest.json > /dev/null
jq -e 'all(.skills[]; .name | type == "string" and length > 0)' manifest.json > /dev/null

# Scripts shape — build is required (start is optional)
Expand Down
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Contributing

This is the **template** for the NFT Collector Copilot agent on Pinata. The OpenSea skill it depends on lives in [`ProjectOpenSea/opensea-skill`](https://github.com/ProjectOpenSea/opensea-skill) and is published to ClawHub as `opensea/opensea-marketplace`. Skill changes do **not** belong here — open them against that repo. Template changes (workspace docs, manifest, README) belong here.
This is the **template** for the NFT Collector Copilot agent on Pinata. The OpenSea skill it depends on lives in [`ProjectOpenSea/opensea-skill`](https://github.com/ProjectOpenSea/opensea-skill) and is published to ClawHub as `opensea-marketplace`. Skill changes do **not** belong here — open them against that repo. Template changes (workspace docs, manifest, README) belong here.

## Repo layout

Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ Supported chains: see `workspace/TOOLS.md`. Mainnets only by default.
## What's bundled

- [`@opensea/cli`](https://github.com/ProjectOpenSea/opensea-cli) — installed globally at build time.
- [`opensea/opensea-marketplace`](https://clawhub.ai/opensea/opensea-marketplace) — attached via `manifest.json` → `skills` and mounted at `skills/opensea/`. SKILL.md + reference docs + shell scripts for Seaport, swaps, stream events, wallet setup, and policy templates. Pinata pulls the latest published version at deploy time.
- [`opensea-marketplace`](https://clawhub.ai/opensea-marketplace) — attached via `manifest.json` → `skills` and mounted at `skills/opensea/`. SKILL.md + reference docs + shell scripts for Seaport, swaps, stream events, wallet setup, and policy templates. Pinata pulls the latest published version at deploy time.

## Secrets you'll need

Expand Down Expand Up @@ -74,7 +74,7 @@ Full walkthrough: `skills/opensea/references/wallet-setup.md`. Policy templates:

```
.
├── manifest.json # Pinata agent manifest — attaches opensea/opensea-marketplace from ClawHub
├── manifest.json # Pinata agent manifest — attaches opensea-marketplace from ClawHub
├── LICENSE # MIT
├── .openclaw/
│ ├── openclaw.json # OpenClaw harness config (compaction, concurrency)
Expand All @@ -94,4 +94,4 @@ At deploy time Pinata attaches the OpenSea skill under `skills/opensea/` (SKILL.

## Updating the skill

Skill versions are managed on ClawHub, not in this template. To pick up a new version, no repo change is needed — Pinata pulls the latest published version of `opensea/opensea-marketplace` on each deploy. To pin to a specific version, replace `clawhub_slug` in `manifest.json` with a `cid` for that version.
Skill versions are managed on ClawHub, not in this template. To pick up a new version, no repo change is needed — Pinata pulls the latest published version of `opensea-marketplace` on each deploy. To pin to a specific version, replace `clawhub_slug` in `manifest.json` with a `cid` for that version.
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"authorLogoUrl": "https://static.seadn.io/logos/Logomark-Blue.png"
},
"skills": [
{ "clawhub_slug": "opensea/opensea-marketplace", "name": "OpenSea" }
{ "clawhub_slug": "opensea-marketplace", "name": "OpenSea" }
],
"scripts": {
"build": "npm install -g @opensea/cli"
Expand Down
2 changes: 1 addition & 1 deletion workspace/AGENTS.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ workspace/
USER.md # About your human (filled on first run)
MEMORY.md # Long-running free-text observations (create when useful)
memory/ # Structured memory files (create on first write)
skills/opensea/ # Attached from ClawHub at deploy time (opensea/opensea-marketplace)
skills/opensea/ # Attached from ClawHub at deploy time (opensea-marketplace)
```

## Memory Schemas
Expand Down
2 changes: 1 addition & 1 deletion workspace/TOOLS.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ _User-tunable. Edit this file to change what the agent watches, who it follows,
## Stack

- **OpenSea CLI:** `@opensea/cli` — installed globally at build time. Use `opensea --help` for the command tree.
- **OpenSea skill:** `skills/opensea/` — attached from ClawHub (`opensea/opensea-marketplace`) at deploy time.
- **OpenSea skill:** `skills/opensea/` — attached from ClawHub (`opensea-marketplace`) at deploy time.
- **Wallet:** Privy server wallet, env-configured (`PRIVY_APP_ID`, `PRIVY_APP_SECRET`, `PRIVY_WALLET_ID`).

## Watchlist
Expand Down
Loading