← 返回 Skills 市场
311
总下载
0
收藏
1
当前安装
1
版本数
在 OpenClaw 中安装
/install viraloop
功能描述
OpenClaw AI agent skill for automated TikTok and Instagram carousel growth. Analyzes any website URL to extract brand, competitors, value proposition, then g...
安全使用建议
Summary of what to consider before installing and running this skill:
- It does what it says (analyze a website, generate images via Gemini, and publish via Upload-Post), but there are several mismatches and risky defaults you should be aware of.
- High-impact behavior: by default the skill is written to run the full pipeline without asking and to post directly to your feed (public) with auto music. If you do not want automatic live posting, do NOT run publish-carousel.sh with your real account token; edit the script to post to drafts or disable auto_add_music/privacy=PUBLIC_TO_EVERYONE.
- Environment variables: the declared required vars omit UPLOADPOST_USER, but the scripts require it at runtime. Set UPLOADPOST_USER or modify scripts to make it truly optional.
- Persistence: the skill keeps learnings.json in the skill directory (persisting across runs). If you prefer ephemeral data, change learn-from-analytics.js to write to /tmp or another approved path.
- Command-safety: publish-carousel.sh constructs a curl command and runs it via eval including caption text. That is fragile and can be exploited if untrusted strings reach caption. Before using, sanitize/escape caption and other variables (or use a direct curl invocation with array args instead of eval). Also review any data that could come from websites (analyze-web.js) before it's sent to external APIs.
- Scheduling/autonomy: SKILL.md asks the agent to auto-adjust cron/schedules but there is no code doing that; if you intend to have daily runs, implement scheduling externally (cron, task scheduler, or orchestration) rather than letting an agent modify schedules. Prefer manual approval or at least a confirmation step before first live publish.
- Test safely: run the pipeline with dummy/test accounts and tokens first. Confirm image generation, captions, and publishing behavior. Verify what is sent to Gemini/Upload-Post and that nothing sensitive is being uploaded.
- If you are not comfortable reviewing and tightening the scripts yourself, do not supply real account tokens. Consider using a sandbox or creating throwaway social accounts to evaluate behavior.
If you want, I can: (a) list the exact lines you should change to disable auto-publishing / make UPLOADPOST_USER truly optional, (b) show how to harden the curl invocation to avoid eval-based injection, or (c) produce a checklist to safely test this skill in a sandboxed environment.
功能分析
Type: OpenClaw Skill
Name: viraloop
Version: 0.1.0
The skill bundle contains a significant shell injection vulnerability in 'scripts/publish-carousel.sh' where website-derived content is executed via 'eval'. Additionally, 'SKILL.md' contains high-risk instructions directing the AI agent to operate with total autonomy, specifically forbidding it from asking for user confirmation and encouraging it to modify its own automation schedules. While these appear to be functional design choices for an 'autonomous growth engine' rather than intentional malware, the combination of shell injection risks and the lack of human-in-the-loop oversight makes the bundle highly susceptible to prompt-injection attacks from malicious websites.
能力评估
Purpose & Capability
Name/description match the code: the scripts analyze websites, generate images via Gemini, and publish via Upload-Post. Required binaries (node, jq, uv) and env vars (GEMINI_API_KEY, UPLOADPOST_TOKEN) are expected for image gen and publishing. However there are mismatches: README/_meta claim learnings are stored in /tmp/carousel/, but learn-from-analytics.js writes learnings.json into the skill directory (persistent). README marks UPLOADPOST_USER as optional, but several scripts (check-analytics.sh, publish-carousel.sh) treat UPLOADPOST_USER as required and will exit if it's not set. SKILL.md promises the agent will 'automatically adjust its own cron/automation schedule' then run daily — no code in the repo implements scheduling or cron modification. These inconsistencies reduce internal coherence.
Instruction Scope
The SKILL.md instructs fully autonomous runs without confirmation and to auto-adjust scheduling; the code will post directly to feeds (publish-carousel.sh uses privacy PUBLIC_TO_EVERYONE and auto_add_music=true). The runtime steps read and write local analysis and learning files and send content (prompts, images, captions) to external services (Gemini and Upload-Post) — appropriate for the stated goal. Concerns: (1) several scripts require UPLOADPOST_USER though registry metadata omitted it; (2) the agent is explicitly instructed not to ask the user for confirmation before publishing — that is high-impact behavior and not proportional for many users; (3) analyze-web.js scrapes many page elements (headings, testimonials, pricing) and that scraped text is fed to the image API and publishing pipeline — this could inadvertently transmit sensitive text found on public pages; (4) publish-carousel.sh constructs and evals a curl command string including caption text without robust escaping, which creates a command-injection/exfiltration risk if captions contain unexpected characters or attacker-controlled content.
Install Mechanism
No install spec (instruction-only) is present; that lowers install-time risk since nothing is downloaded during install. Code files are bundled in the skill package and executed at runtime. Playwright will need to be installed separately (not auto-installed here) which is expected for website scraping.
Credentials
Declared required env vars (GEMINI_API_KEY and UPLOADPOST_TOKEN) are appropriate. However: (1) scripts also require UPLOADPOST_USER at runtime (they will exit if missing) even though metadata/README mark it optional — that's a discrepancy; (2) learn-from-analytics.js writes learnings.json into the skill directory (persistent storage) which is not declared in README/_meta as the canonical location; (3) the skill asks the agent to run autonomously and post publicly using the provided credentials — that is powerful and should be proportional to the user's intent. No other unrelated credentials are requested.
Persistence & Privilege
The skill is not marked always:true (good). But the SKILL.md instructs the agent to run daily and to 'automatically adjust its own cron/automation schedule' — that indicates the skill expects to modify scheduler/automation settings. There is no implementation for scheduling in the codebase, but the instruction grants broad autonomy to alter agent scheduling; combined with direct-to-feed publishing it increases blast radius. The skill persists a learnings.json in the skill directory (not just /tmp), giving it ongoing state across runs.
如何使用
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install viraloop - 安装完成后,直接呼叫该 Skill 的名称或使用
/viraloop触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v0.1.0
viraloop 0.1.0 – Initial Release
- Launches an autonomous pipeline for daily TikTok & Instagram carousel posting.
- Analyzes any website URL for brand, competitors, value proposition; generates 6-slide carousels with visual coherence.
- Publishes directly to TikTok and Instagram with trending music, using upload-post.com API.
- Integrates analytics via a feedback loop (learnings.json) to improve hooks, timing, and visuals over time.
- Includes full guidance on account warmup and execution philosophy for maximizing reach.
- Requires Gemini and upload-post.com free API keys for automated research, image generation, posting, and feedback.
元数据
常见问题
Viraloop 是什么?
OpenClaw AI agent skill for automated TikTok and Instagram carousel growth. Analyzes any website URL to extract brand, competitors, value proposition, then g... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 311 次。
如何安装 Viraloop?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install viraloop」即可一键安装,无需额外配置。
Viraloop 是免费的吗?
是的,Viraloop 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。
Viraloop 支持哪些平台?
Viraloop 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。
谁开发了 Viraloop?
由 mutonby(@mutonby)开发并维护,当前版本 v0.1.0。
推荐 Skills