{
  "markdown": "# Aptos Agent Skills\n\n[![Agent Skills](https://img.shields.io/badge/Agent%20Skills-Compatible-green.svg)](https://agentskills.io)\n[![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)](LICENSE)\n[![Skills: 17](https://img.shields.io/badge/Skills-17-green.svg)](#aptos-development-skills)\n[![Patterns: 9](https://img.shields.io/badge/Patterns-9-orange.svg)](patterns/)\n[![SkillsMP](https://img.shields.io/badge/SkillsMP-Browse-purple.svg)](https://skillsmp.com/search?q=aptos)\n[![Skills.sh](https://img.shields.io/badge/Skills.sh-Install-blue.svg)](https://skills.sh/search?q=aptos)\n\nAI-assisted Aptos blockchain development with **Claude Code**, **Cursor**, and **GitHub Copilot**. These skills give\nyour AI coding assistant deep knowledge of Move smart contract development, the Aptos TypeScript SDK, and the full dApp\nlifecycle — from project scaffolding to deployment.\n\n- **Move V2 Object Model** — Write secure smart contracts using modern Aptos patterns\n- **Gas Optimization** — Analyze and reduce transaction costs in Move contracts\n- **Security Auditing** — Catch vulnerabilities before deploying to devnet, testnet, or mainnet\n- **TypeScript SDK** — Integrate Aptos wallets, transactions, and view functions into your frontend\n- **AI-Powered Workflow** — Skills activate automatically based on developer intent\n\n## Install\n\n#### Recommended\n\n```bash\nnpx skills add aptos-labs/aptos-agent-skills\n```\n\n#### Claude Code plugin\n\n```\n/plugin marketplace add aptos-labs/aptos-agent-skills\n```\n\n#### Manual\n\n```bash\ngit clone https://github.com/aptos-labs/aptos-agent-skills.git\n```\n\nSee [INSTALL.md](INSTALL.md) for selective installation and other options.\n\n## Aptos Development Skills\n\n### Move Smart Contracts\n\n| Skill                                                                     | Purpose                                                      |\n| ------------------------------------------------------------------------- | ------------------------------------------------------------ |\n| [write-contracts](skills/move/write-contracts/SKILL.md)                   | Generate secure Aptos Move V2 smart contracts                |\n| [generate-tests](skills/move/generate-tests/SKILL.md)                     | Generate Move unit tests targeting 100% code coverage        |\n| [security-audit](skills/move/security-audit/SKILL.md)                     | Security audit for Move smart contracts before deployment    |\n| [deploy-contracts](skills/move/deploy-contracts/SKILL.md)                 | Deploy Move contracts to devnet, testnet, or mainnet         |\n| [search-aptos-examples](skills/move/search-aptos-examples/SKILL.md)       | Search aptos-core for reference implementations and patterns |\n| [analyze-gas-optimization](skills/move/analyze-gas-optimization/SKILL.md) | Analyze and reduce gas costs in Move smart contracts         |\n| [modernize-move](skills/move/modernize-move/SKILL.md)                     | Migrate Move V1 resource accounts to V2 object model         |\n\n### TypeScript SDK\n\n| Skill                                                                         | Purpose                                                                        |\n| ----------------------------------------------------------------------------- | ------------------------------------------------------------------------------ |\n| [use-ts-sdk](skills/sdk/typescript/use-ts-sdk/SKILL.md)                       | Aptos TypeScript SDK orchestrator for frontend integration                     |\n| [ts-sdk-client](skills/sdk/typescript/ts-sdk-client/SKILL.md)                 | Set up Aptos client with AptosConfig and network selection                     |\n| [ts-sdk-account](skills/sdk/typescript/ts-sdk-account/SKILL.md)               | Create Aptos accounts and signers from private keys or derivation paths        |\n| [ts-sdk-address](skills/sdk/typescript/ts-sdk-address/SKILL.md)               | Parse and derive Aptos account addresses (AIP-40)                              |\n| [ts-sdk-transactions](skills/sdk/typescript/ts-sdk-transactions/SKILL.md)     | Build, sign, and submit Aptos transactions including sponsored and multi-agent |\n| [ts-sdk-view-and-query](skills/sdk/typescript/ts-sdk-view-and-query/SKILL.md) | Call Move view functions and query on-chain Aptos data                         |\n| [ts-sdk-types](skills/sdk/typescript/ts-sdk-types/SKILL.md)                   | Map Move types to TypeScript (u64, u128, address, vector)                      |\n| [ts-sdk-wallet-adapter](skills/sdk/typescript/ts-sdk-wallet-adapter/SKILL.md) | Integrate Aptos wallets into React apps with useWallet                         |\n\n### Project Setup\n\n| Skill                                                                | Purpose                                                 |\n| -------------------------------------------------------------------- | ------------------------------------------------------- |\n| [create-aptos-project](skills/project/create-aptos-project/SKILL.md) | Scaffold new Aptos dApp projects with create-aptos-dapp |\n\n### Community Skills\n\nCommunity-contributed skills built by developers across the Aptos ecosystem. These are independently maintained and have\nnot been reviewed by Aptos Labs. See [community-skills/](community-skills/) for contribution guidelines.\n\n| Skill                                                              | Author    | Purpose                                                 |\n| ------------------------------------------------------------------ | --------- | ------------------------------------------------------- |\n| [smoothsend-gasless](community-skills/smoothsend-gasless/SKILL.md) | ivedmohan | Sponsor gas fees for Aptos transactions with SmoothSend |\n\n## Quick Start\n\n### Claude Code\n\nSkills activate automatically based on what you say:\n\n```\n\"Create a new dApp\"           → project scaffolding\n\"Write an NFT contract\"       → /write-contracts\n\"Write tests for this\"        → /generate-tests\n\"Check security\"              → /security-audit\n\"Deploy to testnet\"           → /deploy-contracts\n\"Add a frontend\"              → /use-ts-sdk\n```\n\n### Cursor / Copilot\n\nReference skill files directly in prompts:\n\n```\n@skills/move/write-contracts/SKILL.md Help me build an NFT marketplace\n```\n\nInclude `CLAUDE.md` in your workspace context for full skill routing and auto-recommendations.\n\n## Aptos dApp Development Workflow\n\n1. **Create** — `/create-aptos-project` scaffolds with `npx create-aptos-dapp`\n2. **Write** — `/write-contracts` generates Move modules\n3. **Test** — `/generate-tests` creates test suites with 100% coverage\n4. **Audit** — `/security-audit` checks for vulnerabilities\n5. **Deploy** — `/deploy-contracts` publishes to your target network\n6. **Frontend** — `/use-ts-sdk` wires up TypeScript integration\n\nSee [CLAUDE.md](CLAUDE.md) for all workflows, global rules, and pattern references.\n\n## Learn More\n\n| Resource                                        | Description                                                                     |\n| ----------------------------------------------- | ------------------------------------------------------------------------------- |\n| [CLAUDE.md](CLAUDE.md)                          | Full guide for AI assistants — workflows, rules, skill routing                  |\n| [INSTALL.md](INSTALL.md)                        | Installation options and selective skill setup                                  |\n| [patterns/](patterns/)                          | Reference docs for objects, digital assets, fungible assets, security, and more |\n| [community-skills/](community-skills/)          | Community-contributed skills and contribution guidelines                        |\n| [aptos.dev](https://aptos.dev)                  | Official Aptos documentation                                                    |\n| [SkillsMP](https://skillsmp.com/search?q=aptos) | Browse Aptos skills on SkillsMP                                                 |\n| [Skills.sh](https://skills.sh/search?q=aptos)   | Browse and install via Skills.sh                                                |\n\n## Contributing\n\nWe welcome contributions — new skills, pattern improvements, examples, and bug fixes. See\n[CONTRIBUTING.md](CONTRIBUTING.md) for guidelines.\n\n## License\n\nMIT — see [LICENSE](LICENSE) for details.\n",
  "bytes": 8322,
  "sha": "fdb222039426066acdff9b147a611162d21f165f1b1a17be5585d334abcf860f",
  "repo_slug": "aptos-labs/aptos-agent-skills",
  "fonte": "repo",
  "truncated": false,
  "api": "https://agentalog.com/api/listings/plg_aptos_labs_aptos_agent_skills_aptos_agen_77d4dad6/readme"
}