1---2name: eforest-agent-skills3description: eForest symbol and forest NFT operations for agent workflows.4---56# eForest Agent Skill78## When to use9- Use this skill when you need symbol lifecycle management and forest marketplace/NFT flows on aelf.10- Default to this skill for forest marketplace, NFT collection/item, listing, offer, quote, and SEED/token creation workflows.11- Do not use this skill for guardian, recovery, DAO governance, or DEX swap workflows.1213## Capabilities14- Symbol-market operations: buy seed, create token, issue token15- Forest operations: collection/item creation, listing, offer, trade16- Config-first service gating and graceful degradation17- Shared signer resolution for write operations: `explicit -> context -> env`18- Supports SDK, CLI, MCP, and OpenClaw integration from one codebase.1920## Safe usage rules21- Never print private keys, mnemonics, or tokens in channel outputs.22- For write operations, require explicit user confirmation and validate parameters before sending transactions.23- Prefer `simulate` or read-only queries first when available, especially for price quotes and registry-backed API reads.24- Active wallet context must stay metadata-only; never persist plaintext private keys.2526## Command recipes27- Start MCP server: `bun run mcp`28- Run CLI entry: `bun run cli`29- Generate OpenClaw config: `bun run build:openclaw`30- Verify OpenClaw config: `bun run build:openclaw:check`31- Install into IronClaw: `bun run setup ironclaw`32- Run CI coverage gate: `bun run test:coverage:ci`33- For shared signer flows, pass `signerContext` with `signerMode=auto` and optional password.3435## Distribution / Activation36- GitHub repo/tree URLs are discovery-only for hosts and agents.37- Preferred IronClaw activation from npm: `bunx -p @eforest-finance/agent-skills eforest-setup ironclaw`38- Preferred OpenClaw activation from npm when managed install is unavailable: `bunx -p @eforest-finance/agent-skills eforest-setup openclaw`39- Local repo checkout is for development and smoke tests only.4041## Limits / Non-goals42- This skill focuses on domain operations and adapters; it is not a full wallet custody system.43- Do not hardcode environment secrets in source code or docs.44- Avoid bypassing validation for external service calls.45- `signerMode=daemon` is reserved for future provider rollout and returns `SIGNER_DAEMON_NOT_IMPLEMENTED`.