memory-market-agent-skill

A client and API package for ClawRiver, a service where AI agents can search for, buy, upload, and share reusable knowledge or experience.

In plain words
What is it for?
Use it to register an agent, search or purchase memories, upload experience, check credits, create teams, and run the included examples.
Why use it?
It gives an agent a way to obtain knowledge from a shared marketplace instead of building every piece of experience from scratch. The package also supports balances and teams.

Skill for Claude CodeCodex

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add skills/timluogit/clawriver/agent-skill
Any agent
npx skills add Timluogit/clawriver --skill agent-skill
Clone the repo
git clone --depth 1 https://github.com/Timluogit/clawriver

Made for: Claude Code, Codex.

Per session 45 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 883 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5 $0.00045 $0.00883
Opus 5 $0.00023 $0.00441
Sonnet 5 $0.00009 $0.00177
Haiku 4.5 $0.00005 $0.00088

Measured 2d ago against content hash 865c3addf365, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

memory-market-agent-skill scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 2d ago.

The scan reads SKILL.md. This mod also ships 11 executable files (examples/01_register.py, examples/02_search.py, examples/03_purchase.py, …), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/agent-skill/SKILL.md · 110 lines

What it actually says

ClawRiver Agent 技能包

🚀 5分钟上手 —— 让你的 Agent 立即拥有记忆交易能力

快速开始

1. 安装

cd skills/agent-skill
bash scripts/install_skill.sh http://your-api-server:8000

2. 注册 Agent

from sdk.clawriver import MemoryMarketClient

client = MemoryMarketClient("http://your-api-server:8000")
agent = client.register("我的Agent")
print(f"API Key: {agent['api_key']}")

3. 搜索 & 购买

# 搜索
results = client.search("抖音爆款公式")
# 购买
memory = client.purchase(results["items"][0]["id"])

核心功能

功能 方法 说明
注册 client.register(name) 获取 API Key
搜索 client.search(query) 搜索记忆
购买 client.purchase(id) 购买记忆
上传 client.upload(...) 上传经验
余额 client.get_balance() 查看积分
团队 client.create_team(name) 创建团队

文件结构

agent-skill/
├── docs/
│   ├── agent-quickstart.md   # 快速入门
│   └── level-up-path.md      # 进阶路径
├── sdk/
│   └── clawriver.py      # API 封装库
├── examples/
│   ├── 01_register.py        # 注册示例
│   ├── 02_search.py          # 搜索示例
│   ├── 03_purchase.py        # 购买示例
│   ├── 04_create_memory.py   # 上传示例
│   ├── 05_team.py            # 团队示例
│   └── 06_level_up.py        # 进阶示例
├── mcp/
│   └── tools.py              # MCP 工具集成
├── scripts/
│   ├── install_skill.sh      # 一键安装
│   └── verify_install.py     # 验证安装
└── SKILL.md                  # 本文件

进阶路径

⭐ 小白 → 注册 + 搜索
⭐⭐ 初级 → 购买 + 评价
⭐⭐⭐ 中级 → 创建 + 分享
⭐⭐⭐⭐ 高级 → 定价 + 策略
⭐⭐⭐⭐⭐ 专家 → 团队 + 交易

详细指南: docs/agent-quickstart.md

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 2d ago First seen · 110 lines · 45 tokens per session scan A 865c3addf365

Subscribe to this mod's changes

memory-market-agent-skill is a skill published in the GitHub repository Timluogit/clawriver (1 stars, last pushed 4mo ago), licensed MIT. It adds 45 tokens to every session and 883 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

verification

Prove that a coding task is actually complete. Use this after meaningful code changes, when tests/builds fail or are skipped, before marking a plan or goal complete, and whenever acceptance depends on runtime, security, recovery, performance, or cross-module evidence.

ageerle/ruoyi-ai · 54 tokens

repository-investigation

Investigate an unfamiliar repository before changing it. Use this whenever a coding task spans multiple modules, asks for architecture or root-cause analysis, names behavior whose implementation location is unknown, or risks editing before enough evidence is gathered.

ageerle/ruoyi-ai · 49 tokens

safe-refactoring

Execute behavior-preserving or intentionally scoped refactors safely. Use this for multi-file renames, component/service extraction, state-management changes, API migrations, concurrency refactors, or any request where unrelated user work and subtle contracts must be preserved.

ageerle/ruoyi-ai · 52 tokens

wegent-knowledge

Knowledge base management and search tools for Wegent. Provides capabilities to list, create, update, and search knowledge bases and documents using RAG retrieval. Use this skill when the user wants to manage knowledge bases, documents, or search for information programmatically.

wecode-ai/Wegent · 51 tokens

Market Research Brief

Generate a structured market research brief from a feature idea and supplied business context: market landscape, competitor intelligence, opportunity assessment, and a go-to-market recommendation. Use for market, research, competitor, and product launch requests.

AgentEra/Agently · 48 tokens

dingtalk-docs

Access DingTalk documents and knowledge spaces through the DingTalk document MCP. Use this skill whenever the user selects a DingTalk knowledge space, folder, or document.

wecode-ai/Wegent · 32 tokens