This repository stores canonical reusable skills for PlatON development workflows.
platon-chainlist: resolve validated PlatON mainnet and devnet Chainlist endpointsplaton-cli: query PlatON on-chain data with Foundrycastplaton-blockscout: query PlatON explorer data from Blockscoutplaton-crosschain: query PlatON bridge routes, bridge transactions, and crosschain contract guidanceplaton-aawallet: integrate PlatON AA wallet ERC-4337 contracts from any language or SDK
Current platon-blockscout coverage includes:
- verified contract ABI and source inspection
- address overview, token holdings, NFT collections
- block details, transaction details, transaction logs
- address-emitted logs
- filtered transaction history and token transfer history
Suggested skill boundary:
- use
platon-chainlistfor validated RPC and explorer endpoint discovery - use
platon-clifor direct RPC reads and writes - use
platon-blockscoutfor explorer-style indexed data and verified-contract metadata - use
platon-crosschainfor bridge route discovery, bridge transaction lookup, and crosschain bridge guidance - use
platon-aawalletfor PlatON AA wallet ERC-4337 integration flows across languages and SDKs
Each skill follows the shared open skill contract:
- skill directory with a
SKILL.mdentry file - optional
agents/metadata - optional bundled
references/,scripts/, orassets/
.
├── .claude-plugin/
│ └── marketplace.json
├── AGENTS.md
├── platon-blockscout/
├── platon-chainlist/
├── platon-cli/
├── platon-crosschain/
├── platon-aawallet/
└── README.md
Generic installer form:
npx skills add PlatONnetwork/platon-dev-skillsFor this repository, use the repository path or URL supported by your installer.
Claude Code marketplace form:
claude plugin marketplace add PlatONnetwork/platon-dev-skillsAfter adding the marketplace, install the published plugin entry you want from this repository.
- Keep
SKILL.mdfocused on runtime behavior, not installation steps - Keep agent-specific metadata outside the core workflow where possible
- Keep detailed domain material in bundled references instead of bloating
SKILL.md - Treat marketplace or installer files as compatibility layers, not the skill itself