Skills DirectorySkills Directory
SkillsLearnSecurityCategoriesDocsCommunityBlog
Sign InSubmit Skill
Skills Directory

Security-tested agent skills for Claude, coding agents, and AI workflows.

Directory

  • Browse Skills
  • All Skills A–Z
  • Claude Skills
  • Claude Code Skills
  • Agent Skills
  • Categories
  • Authors
  • Submit a Skill

Learn

  • Learn Hub
  • Install Claude Skills
  • Write SKILL.md
  • Skills vs MCP
  • Directories Compared

Security

  • Security
  • Methodology
  • Secure Claude Skills
  • Security Badges

Company

  • About
  • Community
  • Blog
  • API Docs
  • Advertise

2026 Skills Directory. All rights reserved.

ProTermsPrivacyRefunds
Back to skills

Github Analysis Nadfun Token Launch

ASecurity

AI Agent Skill for GitHub project analysis and nad.fun token launch. Analyzes repos, generates token identity/promo, and launches on nad.fun.

19 stars
0 votes
0 copies
0 views
Added 9/19/2026
ai-agentstypescriptgobashgitapisecurity

Works with

api

Security Analysis

A96/100
mediumInstalls packages at runtime which could introduce malicious dependencies

Scanned 9/19/2026

Install to Claude Code

$npx -y skills add rondoflow/rondoflow --skill github-analysis-nadfun-token-launch --agent claude-code

Installs into .claude/skills of the current project.

Are you the author of Github Analysis Nadfun Token Launch?

Add the live security badge to your README — it updates automatically with every re-scan.

Security grade badge for Github Analysis Nadfun Token Launch
[![Security: A — Skills Directory](https://www.skillsdirectory.com/api/skills/rondoflow-github-analysis-nadfun-token-launch/badge)](https://www.skillsdirectory.com/skills/rondoflow-github-analysis-nadfun-token-launch)

More formats (shields.io, HTML) on the badges page.

Download with Pro
Files
SKILL.md
---
name: github-analysis-nadfun-token-launch
description: "AI Agent Skill for GitHub project analysis and nad.fun token launch. Analyzes repos, generates token identity/promo, and launches on nad.fun."
category: "Finance & Crypto"
author: community
version: "1.01"
icon: coins
---

# SKILL.md - TokenBroker Skillset

## Security & Data Privacy

### Local Storage Only
- All credentials (GitHub token, private keys, API keys) are stored **locally** in a `.env` file
- No credentials are transmitted to external servers beyond their intended endpoints (GitHub API, nad.fun API, Monad RPC)
- The skill operates entirely within your local environment

### .env File Generation
- The Install Wizard generates a `.env` file on your local machine
- This file is **never committed** to version control (gitignored)
- You can review and edit it at any time

### Credential Scope
- `GITHUB_TOKEN`: Used only for GitHub API calls to read public repository data
- `PRIVATE_KEY`: Used only for EVM transaction signing (never exposed in plain text)
- `BUILDER_ID`: Local identifier for A2A protocol
- `NAD_FUN_API_KEY`: Used only for nad.fun token creation API

### Testnet Mode
- Default operation is on **testnet** for safety
- Mainnet requires explicit configuration
- Always review transactions before signing

---

**The AI agent skill for memecoin launches on nad.fun.** Analyze GitHub projects, generate token metadata, and launch directly on nad.fun bonding curves.

## What is TokenBroker?

TokenBroker is a **complete memecoin launch solution** for AI agents:

1. **Analyzes** GitHub projects to identify meme-worthy projects
2. **Generates** token names, tickers, descriptions, and marketing content
3. **Launches** tokens on nad.fun (image, metadata, salt, deploy)
4. **Promotes** launches with X/Telegram/Discord content

## When to Use This Skill

### TokenBroker Handles
- GitHub repository analysis and scoring
- Token identity generation (name, ticker, description)
- Meme-style image generation
- Nad.fun API integration (upload, salt mining)
- Marketing content creation (X threads, Telegram, Discord)
- Full launch orchestration

### Not Included
- Wallet private key management (handled by host)
- On-chain transactions beyond nad.fun bonding curves

## Architecture (tokenbroker/src/generators/)

```
generators/
├── identity.ts     # Token name, ticker, description generation
├── reasoning.ts    # Investment thesis, narrative creation
├── promo.ts        # X threads, Telegram, Discord content
├── nadfun.ts       # Nad.fun API: upload image/metadata, mine salt
└── index.ts        # Pipeline orchestrator (generateAll)
```

## Quick Start for Agents

```typescript
import { generateAll, prepareLaunch } from './generators/index.js';

// 1. Analyze repo and generate all launch assets
const assets = await generateAll({
  repoAnalysis: await analyzeGitHubRepo('https://github.com/user/project')
});

console.log('Token name:', assets.identity.name);
console.log('Ticker:', assets.identity.ticker);
console.log('X Thread:', assets.promo.xThread.tweets);

// 2. Prepare launch on nad.fun (API calls only)
const prepared = await prepareLaunch(assets.identity, 'mainnet');
// -> Returns: { imageUri, metadataUri, salt, saltAddress }

// 3. Deploy on-chain (requires ethers + private key)
// Use deploy.ts module with wallet for on-chain execution
```

## Generator Functions

### generateIdentity(input)
Analyzes repo and generates token identity:
```typescript
{
  name: "SWAPPRO",
  ticker: "SWAP", 
  tagline: "The next generation DeFi protocol",
  description: "Full token description...",
  nameReasoning: "How the name was derived"
}
```

### generateReasoning(input)
Creates investment thesis and narrative:
```typescript
{
  investmentThesis: "Why this token should exist...",
  problemStatement: "The problem being solved",
  solution: "The proposed solution",
  marketOpportunity: "Market size and opportunity",
  competitiveAdvantage: "Why this wins",
  tokenUtilityRationale: "Token value proposition",
  vision: "Long-term vision"
}
```

### generatePromo(input)
Generates marketing content:
```typescript
{
  xThread: { title, tweets: [...], hashtags, mentions },
  telegramPost: { title, content, hasButton, buttonText, buttonUrl },
  discordAnnouncement: { title, content, hasEmbed, embedColor, embedFields },
  tagline: "Marketing tagline",
  elevatorPitch: "One-liner pitch"
}
```

### prepareLaunch(identity, network)
Prepares token for nad.fun launch (API calls):
```typescript
{
  imageUri: "ipfs://...",
  metadataUri: "ipfs://...", 
  salt: "0x...",
  saltAddress: "0x..."
}
```

## Nad.fun Integration

TokenBroker integrates directly with nad.fun API:

| Step | API Endpoint | Function |
|------|-------------|----------|
| 1 | POST /agent/token/image | `uploadImage()` |
| 2 | POST /agent/token/metadata | `uploadMetadata()` |
| 3 | POST /agent/salt | `mineSalt()` |
| 4 | BondingCurveRouter.create() | On-chain deployment |

### Network Configuration
| Network | API | RPC |
|---------|-----|-----|
| Testnet | https://dev-api.nad.fun | https://testnet-rpc.monad.xyz |
| Mainnet | https://api.nadapp.net | https://rpc.monad.xyz |

## Install

```bash
npm install
```

## Configuration

```bash
# Network (testnet | mainnet)
NETWORK=mainnet

# GitHub (optional - for repo analysis)
GITHUB_TOKEN=ghp_...
```

## For On-Chain Deployment

TokenBroker prepares all launch data. For actual on-chain deployment:

```bash
npm install ethers
```

Then use with a wallet:
```typescript
import { prepareLaunch } from './generators/nadfun.js';
import { ethers } from 'ethers';

const prepared = await prepareLaunch(identity, 'mainnet');

// Deploy with wallet
const wallet = new ethers.Wallet(privateKey, provider);
const router = new ethers.Contract(BONDING_CURVE_ROUTER, abi, wallet);
await router.create(tokenParams, fee, toll, tradingAmt, { value: deployFee });
```

---

*Built for the agentic future.* 🦞

Attribution

rondoflowrondoflow
View sourceMore from rondoflow →
SSkills DirectorySkills Directory

Know which skills are safe — weekly.

Best new skills + every skill we flagged as malicious. From the team that scanned 103,619.

Join free

Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.

Comments (0)

No comments yet. Be the first to comment!

SSkills DirectorySkills Directory

Know which skills are safe — weekly.

Best new skills + every skill we flagged as malicious. From the team that scanned 103,619.

Join free

Related Skills

Caveman

Ultra-compressed communication mode that cuts output tokens while keeping technical accuracy. Levels: lite, full, ultra and the wenyan variants. Use for /caveman, "caveman mode", "talk like caveman", "be brief" or "less tokens".

1066601 votes

Hyperplan

Adversarial multi-agent planning skill. Self-orchestrates 5 hostile category members (unspecified-low, unspecified-high, deep, ultrabrain, artistry) via team-mode for ruthless cross-critique debate, distills only the defensible insights, then MANDATORILY hands the distilled insight bundle to the `plan` agent for executable plan formalization. Use when planning needs maximum rigor and surfacing of weak assumptions, blind spots, and over-engineering. Triggers: 'hyperplan', 'hpp', '/hyperplan', ...

693161 votes

Mcp Code Execution

Routes multi-tool workflows through MCP servers for large datasets and pipelines. Use when Bash tool overhead is limiting throughput on data-heavy tasks.

3351 votes

catchup

Recovers the conversation and failed tool calls of a previous Codex, Claude Code, Antigravity, Cline, Copilot CLI, Cursor, DeepSeek Harness, Kimi, OpenCode, Pi Agent, or ZCode session. Use when the user says "catch up", "what did the last session do", "get me up to speed", "I switched agents", asks to recover/summarize a previous session before continuing, or asks to diagnose or report a catchup failure. Do NOT use for the current conversation, git history, or any non-agent log.

691 votes

math-skill

A comprehensive mathematical reasoning skill for AI assistants — handles arithmetic to research-level problems with rigorous step-by-step reasoning, systematic verification, and transparent uncertainty handling

381 votes
View all in ai-agents →