> For the complete documentation index, see [llms.txt](https://docs.megaeth.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.megaeth.com/moss-docs/wallet/agent-skills.md).

# Agent Skills Pack

Seven focused skills that teach coding agents (Claude, Codex, Cursor, etc.) how to build on MOSS correctly. Each skill is a self-contained instruction module that the agent loads on demand for a specific job — keeping the agent accurate on exact method names, safe defaults, the permission model, and the integration patterns that quietly break things when missed.

Share this pack with external engineering teams when they're implementing or reviewing MOSS Wallet integrations.

## The Seven Skills

| Skill                               | When to Use                                                              | What It Produces                                                                    |
| ----------------------------------- | ------------------------------------------------------------------------ | ----------------------------------------------------------------------------------- |
| `moss-wallet-sdk`                   | First-pass build work — connect, sign, transfer, contract call, balances | Minimal working example, the right imports, result and error handling.              |
| `moss-wallet-best-practices`        | Architecture review and launch planning                                  | Recommended architecture, production checklist, safe defaults, common pitfalls.     |
| `moss-wallet-security-review`       | Pre-launch risk assessment                                               | Findings grouped as Critical, Risky defaults, and Recommendations with remediation. |
| `moss-wallet-auth-server-verify`    | Wallet-backed login                                                      | Client flow, backend verification, nonce and challenge handling.                    |
| `moss-wallet-paymaster-sponsorship` | Gas sponsorship configuration                                            | Sponsor config, endpoint policy, mode selection, abuse controls.                    |
| `moss-wallet-agent-flows`           | AI-agent and automation flows                                            | Permission policy, execution loop, backend guardrails, revoke plan.                 |
| `moss-wallet-commerce`              | Payment layer for commerce                                               | Checkout-safe payment plan with clear wallet gating and execution paths.            |

## Why Hand This to Partners

Three integration failure modes that show up repeatedly without this pack:

1. Agents invent SDK behavior that doesn't exist — wrong method names, hallucinated config fields, or made-up response shapes that "look right."
2. Over-broad permission grants that are hard to reason about in production, with no clear revocation plan.
3. Security gaps discovered at launch — frontend-owned trust decisions, missing backend verification, sponsorship policies without abuse controls.

Each skill encodes the production-safe defaults so the agent doesn't have to re-derive them from prompts.

## Partner Workflow

1. **Build** with `moss-wallet-sdk` — first-pass implementation.
2. **Architecture review** with `moss-wallet-best-practices` before QA.
3. **Security review** with `moss-wallet-security-review` before production.
4. **Pull in feature-specific skills** as needed — auth, sponsorship, agent flows, or commerce.

## Download

{% hint style="info" %}
Downloadable skill packs are coming soon. In the meantime, the skills above map directly to the linked guides in this documentation.
{% endhint %}

This pack improves consistency and security posture — it does not replace a full security assessment for your specific product and threat model.

## Related

* [Best Practices](/moss-docs/wallet/best-practices.md) — apply the same principles directly in your integration design.
* [Integration Checklist](/moss-docs/wallet/integration-checklist.md) — production rollout checklist for partner launch.
* [AI Agent Guide](/moss-docs/wallet/ai-agent-guide.md) — policy-first patterns and example agent workflows.


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.megaeth.com/moss-docs/wallet/agent-skills.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
