Agent Launchpad
Generate complete, deployable AI agent skill packages from natural language descriptions. Includes 6 templates (monitor, scraper, analyst, trader, assistant,...
MIT-0 · Free to use, modify, and redistribute. No attribution required.
⭐ 0 · 155 · 0 current installs · 0 all-time installs
MIT-0
Security Scan
OpenClaw
Suspicious
medium confidencePurpose & Capability
The name and description match the SKILL.md: the skill is an instruction-only wrapper that sends a natural-language description to a remote generator and returns a scaffolded skill. No local binaries, env vars, or installs are required, which is plausible for a thin wrapper. However the source and homepage are unknown, which reduces transparency about who controls the generator and what policies it applies to generated code.
Instruction Scope
The SKILL.md instructs making POST requests to https://launchpad.gpupulse.dev/api/v1/generate (and a monetization endpoint). Those calls will send user-provided descriptions and receive complete SKILL.md + scripts. The instructions do not: (a) specify what data is sent besides the description, (b) warn against including secrets, (c) require authentication or explain access controls, or (d) mandate validation/sandboxing of returned code. This creates high risk of inadvertent leakage of sensitive context or of pulling back executable code that could be malicious or insecure.
Install Mechanism
No install spec and no code files — the skill is instruction-only. That minimizes local disk footprint and installation risk. The primary risk instead is network-based (calling an external service).
Credentials
The skill declares no environment variables or credentials, which is proportionate to an unauthenticated demo-style generator. However, the absence of declared auth is suspicious because real generator services typically require authentication; lack of auth could indicate an open endpoint that accepts arbitrary data (increasing exfiltration risk), or the SKILL.md is incomplete. The skill also implicitly asks the agent to send user content to an external domain — that can leak secrets even if no env vars are listed.
Persistence & Privilege
always is false and there are no install-time changes — so no elevated persistence. The skill allows model invocation (the platform default). Combined with remote code generation, autonomous invocation increases blast radius (e.g., the agent could autonomously send descriptions and then act on returned code), but autonomous invocation by itself is not unusual.
What to consider before installing
This skill forwards user-provided descriptions to an external service (launchpad.gpupulse.dev) which returns ready-to-run skill packages. Before installing or invoking it, consider: 1) Do not send secrets, API keys, or proprietary code/descriptions to the generator — it will be transmitted off-platform. 2) The provider is unknown (no homepage/source); verify the operator and trustworthiness before sharing data. 3) Treat any returned code as untrusted: review and static-scan/sandbox the generated SKILL.md and scripts before running or publishing them. 4) Prefer generating code locally or using a vetted provider that supports authentication and clear data retention policies. 5) Limit the agent's autonomy (disable automatic publishing or require manual approval) so it cannot automatically publish or run fetched code. If you need stronger assurance, ask the publisher for documentation about what the service stores, whether it injects telemetry/monetization hooks, and whether generated packages are reproducible or auditable.Like a lobster shell, security has layers — review code before you run it.
Current versionv1.0.0
Download ziplatest
License
MIT-0
Free to use, modify, and redistribute. No attribution required.
SKILL.md
Agent Launchpad
Describe what you want → get a complete agent skill package → publish to ClawHub.
Generate an Agent
curl -X POST https://launchpad.gpupulse.dev/api/v1/generate \
-H "Content-Type: application/json" \
-d '{"description": "Monitor ETH price and alert below $2000", "price_credits": 5}'
Returns complete SKILL.md + scripts with SkillPay wired in.
Templates
- monitor — watch data, alert on conditions
- scraper — extract web data
- analyst — reports + insights
- trader — paper trading strategies
- assistant — domain Q&A
- webhook — event listener
Pipeline
- POST
/generatewith description - Review generated files
clawhub publish→ Live on ClawHub
Add Payments Later
curl -X POST /api/v1/monetize -H "Content-Type: application/json" \
-d '{"agent_id": "ag_...", "price_credits": 10}'
Files
1 totalSelect a file
Select a file to preview.
Comments
Loading comments…
