scaffold-project

Scaffolds Solana project workspaces with starter repos, skills, and MCP configurations.

Updated Mar 12, 2026
One-click install
npx skills add https://github.com/RavitejaKarra24/dotfiles --skill scaffold-project-ravitejakarra24
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: scaffold-project
Source: https://github.com/RavitejaKarra24/dotfiles/tree/main/agents/.agents/skills/scaffold-project
Command: npx skills add https://github.com/RavitejaKarra24/dotfiles --skill scaffold-project-ravitejakarra24

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes references (resource) components.

What problem does it solve? Choosing the right stack and wiring up a new Solana project involves researching starter repos, SDKs, protocols, and tooling. This Skill turns a validated idea into a ready-to-code workspace by selecting the appropriate architecture, cloning starter repos, installing skills, and configuring MCPs. ## Core Features & Use Cases - Stack Decision Guidance: Uses a decision tree to match your idea (dApp, agent, bot, program, mobile, data pipeline) to the right technology stack and architecture pattern. - Catalog-Based Recommendations: Maps idea types to verified repos, skills, and MCPs from the solana-new catalogs, covering DeFi, NFTs, AI agents, DePIN, gaming, and more. - Integrate vs Build Analysis: Checks whether existing protocols (Jupiter, Kamino, Orca) can be integrated instead of writing custom Anchor programs, and verifies protocol health before committing. - Use Case: You have an idea for a Solana trading bot. The Skill recommends the Solana Agent Kit pattern, scaffolds the project with npx create-solana-agent, installs relevant skills, configures Helius MCP, and writes a build-context file for the next phase. ## Quick Start Ask the assistant to scaffold your Solana project by describing what you want to build and confirming the proposed stack plan.

Frequently Asked Questions about scaffold-project

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I scaffold a new Solana project with the right stack?

Describe what you are building and the Skill matches your idea to a stack using its decision tree, then clones a recommended starter repo, installs skills, and configures MCPs. For most projects, `npx create-solana-dapp` is the fastest starting point.

Should I build a custom Anchor program or integrate an existing Solana protocol?

The Skill defaults to integration first: if your idea can be built on existing protocols like Jupiter for swaps or Kamino for lending, it scaffolds a frontend-only Next.js project with protocol SDKs. Custom Anchor programs are recommended only when integration is not viable.

What starter repos are recommended for Solana AI agents?

For AI agents, the catalog recommends `npx create-solana-agent` as the fastest start, plus solana-agent-kit and its Telegram/Discord bot variants. The Skill also configures solana-mcp and helius-mcp for wallet data and on-chain actions.

Does the scaffold skill work without a prior idea validation phase?

Yes, prior context is optional. If `.superstack/idea-context.md` is missing, the Skill asks you directly what you are building and proceeds immediately without blocking or redirecting you to another command.

Which wallet SDK should I use for a Solana Next.js dApp?

The Skill recommends Wallet Standard (`@solana/wallet-adapter-react`) for Next.js dApps since it auto-detects Phantom, Solflare, and Backpack. Privy is suggested for best UX, and Phantom MCP for agents needing wallet access.