skills/writing-and-planning/copywriting/document-editorial/composio-skills/coinbase-automation/SKILL.md
Coinbase Automation: list and manage cryptocurrency wallets, accounts, and portfolio data via Coinbase CDP SDK
npx skillsauth add lunartech-x/superpowers Coinbase AutomationInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Automate Coinbase operations including listing cryptocurrency wallets, paginating through wallet collections, and retrieving portfolio data.
Toolkit docs: composio.dev/toolkits/coinbase
This skill requires the Rube MCP server connected at https://rube.app/mcp.
Before executing any tools, ensure an active connection exists for the coinbase toolkit. If no connection is active, initiate one via RUBE_MANAGE_CONNECTIONS.
Retrieve all wallets from Coinbase with pagination support.
Tool: COINBASE_LIST_WALLETS
Key Parameters:
limit -- Results per page (1--100, default: 25)order -- Sort order: "asc" (ascending) or "desc" (descending, default)starting_after -- Cursor for forward pagination: ID of the last wallet from the previous pageending_before -- Cursor for backward pagination: ID of the first wallet from the previous pageExample (first page):
Tool: COINBASE_LIST_WALLETS
Arguments:
limit: 50
order: "desc"
Example (next page):
Tool: COINBASE_LIST_WALLETS
Arguments:
limit: 50
order: "desc"
starting_after: "wallet_abc123_last_id_from_prev_page"
To retrieve a complete wallet inventory, iterate through pages.
Steps:
COINBASE_LIST_WALLETS with desired limit and orderCOINBASE_LIST_WALLETS again with starting_after set to that last wallet IDRetrieve wallet data for portfolio analysis and reporting.
Steps:
COINBASE_LIST_WALLETS with limit: 100 to maximize per-page resultsPeriodically list wallets to detect new additions or changes.
Steps:
COINBASE_LIST_WALLETS with order: "desc" to get newest wallets first| Pitfall | Detail |
|---------|--------|
| Pagination required | Wallet lists are paginated. Always check for additional pages using cursor-based pagination (starting_after/ending_before). |
| Limit bounds | The limit parameter accepts 1--100. Values outside this range cause errors. Default is 25. |
| Cursor-based pagination | Uses wallet IDs as cursors, not page numbers. You must extract the last/first wallet ID from each response to navigate pages. |
| CDP SDK scope | This tool uses the Coinbase CDP SDK. Available operations depend on the API key permissions granted during connection setup. |
| Tool Slug | Description |
|-----------|-------------|
| COINBASE_LIST_WALLETS | List cryptocurrency wallets with pagination |
Powered by Composio
tools
Data structure for annotated matrices in single-cell analysis. Use when working with .h5ad files or integrating with the scverse ecosystem. This is the data format skill—for analysis workflows use scanpy; for probabilistic models use scvi-tools; for population-scale queries use cellxgene-census.
testing
Access AlphaFold 200M+ AI-predicted protein structures. Retrieve structures by UniProt ID, download PDB/mmCIF files, analyze confidence metrics (pLDDT, PAE), for drug discovery and structural biology.
development
Access real-time and historical stock market data, forex rates, cryptocurrency prices, commodities, economic indicators, and 50+ technical indicators via the Alpha Vantage API. Use when fetching stock prices (OHLCV), company fundamentals (income statement, balance sheet, cash flow), earnings, options data, market news/sentiment, insider transactions, GDP, CPI, treasury yields, gold/silver/oil prices, Bitcoin/crypto prices, forex exchange rates, or calculating technical indicators (SMA, EMA, MACD, RSI, Bollinger Bands). Requires a free API key from alphavantage.co.
development
This skill should be used for time series machine learning tasks including classification, regression, clustering, forecasting, anomaly detection, segmentation, and similarity search. Use when working with temporal data, sequential patterns, or time-indexed observations requiring specialized algorithms beyond standard ML approaches. Particularly suited for univariate and multivariate time series analysis with scikit-learn compatible APIs.