技能详情(站内镜像,无评论)
许可证:MIT-0
MIT-0 ·免费使用、修改和重新分发。无需归因。
版本:v1.0.0
统计:⭐ 0 · 122 · 0 current installs · 0 all-time installs
⭐ 0
安装量(当前) 0
🛡 VirusTotal :可疑 · OpenClaw :可疑
Package:adjusternwachukwu-bot/agent-launchpad
安全扫描(ClawHub)
- VirusTotal :可疑
- OpenClaw :可疑
OpenClaw 评估
The skill is coherent with its stated purpose (it forwards descriptions to a remote generator), but it delegates generation to an unknown third-party service and provides no safeguards — posing data-exfiltration and supply-chain risks.
目的
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.
说明范围
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 c…
安装机制
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).
证书
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 a…
持久
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.
安装(复制给龙虾 AI)
将下方整段复制到龙虾中文库对话中,由龙虾按 SKILL.md 完成安装。
请把本段交给龙虾中文库(龙虾 AI)执行:为本机安装 OpenClaw 技能「Agent Launchpad」。简介:Generate complete, deployable AI agent skill packages from natural language des…。
请 fetch 以下地址读取 SKILL.md 并按文档完成安装:https://raw.githubusercontent.com/openclaw/skills/refs/heads/main/skills/adjusternwachukwu-bot/agent-launchpad/SKILL.md
(来源:yingzhi8.cn 技能库)
SKILL.md
---
name: agent-launchpad
description: Generate complete, deployable AI agent skill packages from natural language descriptions. Includes 6 templates (monitor, scraper, analyst, trader, assistant, webhook) with optional SkillPay monetization. Use when a user wants to create a new agent, build a skill from scratch, scaffold an agent project, or generate a deployable skill package.
---
# Agent Launchpad
Describe what you want → get a complete agent skill package → publish to ClawHub.
## Generate an Agent
```bash
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
1. POST `/generate` with description
2. Review generated files
3. `clawhub publish` → Live on ClawHub
## Add Payments Later
```bash
curl -X POST /api/v1/monetize -H "Content-Type: application/json"
-d '{"agent_id": "ag_...", "price_credits": 10}'
```