← 返回 Skills 市场
jefftangx

Clawvicular

作者 jefftangx · GitHub ↗ · v1.0.0
cross-platform ✓ 安全检测通过
859
总下载
0
收藏
0
当前安装
1
版本数
在 OpenClaw 中安装
/install clawvicular
功能描述
Daily looksmaxxing slang tip + Clavicular news. Extremely online Gen Z energy.
使用说明 (SKILL.md)

Clawvicular

Daily looksmaxxing tip + Clavicular news. One slang term explained, one fresh piece of Clavicular content — delivered in the voice of the community.

Quick Reference

  • Invoke: /clawvicular
  • Output: Two posts — a slang tip and a Clavicular news/content piece
  • State: {baseDir}/state/sent-terms.json tracks which terms have been sent
  • References: {baseDir}/references/slang-dictionary.md, {baseDir}/references/clavicular-lore.md, {baseDir}/references/content-templates.md
  • Sources: {baseDir}/references/sources.md — index of all tweets, clips, articles, and links

How It Works

Step 1: Pick a Slang Term

  1. Read {baseDir}/state/sent-terms.json to get the list of already-sent terms.
  2. Read {baseDir}/references/slang-dictionary.md to get the full term list.
  3. Pick a random term that has NOT been sent yet.
  4. If all terms have been sent, reset the sent list (clear the file) and start over.

Step 2: Write the Slang Tip

  1. Using the picked term's definition and example from {baseDir}/references/slang-dictionary.md, write a short tip explaining the term.
  2. Optionally, search Urban Dictionary for the term to get the freshest/most authentic community definition:
    WebSearch: "[term] urban dictionary looksmaxxing"
    
    Use this to add extra flavor or a second example, but the {baseDir}/references/slang-dictionary.md entry is the primary source.
  3. Write the tip in Clavicular community voice — ironic, extremely online, Gen Z humor. See {baseDir}/references/content-templates.md for template formats.
  4. Include an example sentence showing the term used naturally.

Step 3: Get Clavicular News

  1. Search the web for the latest Clavicular (Braden Peters / @kingclavicular) content:
    WebSearch: "clavicular looksmaxxing" OR "kingclavicular" OR "braden peters clavicular"
    
    Also try platform-specific searches:
    WebSearch: "kingclavicular kick" OR "kingclavicular tiktok" OR "clavicular twitter"
    
  2. Find the most interesting/recent clip, stream moment, controversy, or content piece.
  3. Summarize it in 2-4 sentences in the community voice.
  4. Always include the source URL (TikTok, Kick, Twitter/X, YouTube, etc.) so people can watch/read themselves.
  5. Log every source you find or use to {baseDir}/references/sources.md — tweets, clips, articles, anything with a URL. Add a row to the appropriate table (Tweets, Articles, Clips & Streams). This builds a running archive.
  6. If no recent news is found, pull a notable moment from {baseDir}/references/clavicular-lore.md and frame it as a throwback.

Step 4: Format Output

Use the templates from {baseDir}/references/content-templates.md to format two posts:

  1. Slang Tip Post — the term, definition, example, and a hot take
  2. News Post — the Clavicular update with source link

Vary the template each day. Don't use the same format twice in a row.

Step 5: Update State

After generating content, update {baseDir}/state/sent-terms.json:

{
  "sent": ["mewing", "bonesmash", "looksmaxxing"],
  "last_sent": "2025-01-15",
  "last_template_tip": 2,
  "last_template_news": 1
}

Add the term you just used to the sent array. Update last_sent to today's date. Track which template number was used to avoid repeats.

Also update {baseDir}/references/sources.md with any new URLs discovered during research (tweets, clips, articles, streams). Every source with a URL gets indexed — this is the permanent archive.


Tone Guide

  • Voice: Extremely online, ironic, Gen Z native. You live in this community.
  • Energy: Half-educational, half-shitpost. You're explaining the term but also roasting.
  • Never: Earnest, cringe, boomer-coded, preachy, or condescending.
  • Always: Self-aware, chaotic, community-native. Use "ngl", "no cap", "fr fr", "ong" naturally.
  • Format: Keep it punchy. No walls of text. Line breaks are your friend.

Cron Setup

To schedule daily delivery at 10am PT:

openclaw cron add --name "clawvicular-daily" \
  --cron "0 10 * * *" --tz "America/Los_Angeles" \
  --session isolated \
  --message "Run the /clawvicular skill: generate today's looksmaxxing tip and Clavicular news." \
  --announce --channel telegram --to "\x3Cchannel-id>"

Replace \x3Cchannel-id> with your actual Telegram channel/group ID. Works with any OpenClaw channel — swap --channel telegram for discord, slack, etc.

Manage the Cron

# List active cron jobs
openclaw cron list

# Remove the job
openclaw cron remove --name "clawvicular-daily"

# Test run (triggers immediately)
openclaw cron trigger --name "clawvicular-daily"

Verification

  1. Copy or symlink this skill into your OpenClaw skills directory:
    ln -s /path/to/clawvicular ~/.openclaw/skills/clawvicular
    
  2. Invoke manually:
    /clawvicular
    
  3. Check that output includes both a slang tip and a news piece.
  4. Verify state/sent-terms.json was updated with the term used.
  5. Set up cron and verify with openclaw cron list.
安全使用建议
This skill is internally coherent: it reads and updates files inside its own skill folder and performs web searches to build a daily slang tip + community news post. Things to consider before installing: (1) it will create and modify state/sources files in the skill directory—inspect those files for any content you don't want stored locally; (2) it performs web searches and will include/record public URLs (which may contain controversial or sensitive allegations about a real person), so review the references content to decide if you want that material archived; (3) the cron example can post into your channels — if you schedule it, ensure you configure the correct channel ID and use an isolated session if you want to limit blast radius; (4) because the agent can autonomously invoke skills by default, monitor automated runs initially. If you want stronger isolation, run the skill in an isolated session or review/modify the references/state files before use.
功能分析
Type: OpenClaw Skill Name: clawvicular Version: 1.0.0 The skill is classified as benign. It performs file I/O operations (reading and writing to JSON and Markdown files) and executes `WebSearch` queries, all within the expected scope of its stated purpose. File operations are confined to the skill's `baseDir` for state management and logging. `WebSearch` inputs are either hardcoded or derived from internal, controlled data files, preventing external prompt injection. There is no evidence of malicious intent, data exfiltration, unauthorized execution, or exploitable vulnerabilities.
能力评估
Purpose & Capability
Name/description (daily looksmaxxing slang tip + Clavicular news) aligns with the provided references and runtime steps: pick a slang term from slang-dictionary.md, fetch recent web content about Clavicular, format two posts, and update local state and sources. No unrelated env vars, binaries, or install steps are requested.
Instruction Scope
SKILL.md instructs the agent to read/write files under its own baseDir (state/sent-terms.json and references/*.md) and to perform web searches for current content (Urban Dictionary, TikTok/X/Kick/etc.). Those actions are within the skill's described purpose. The only external network activity is web searching/fetching public URLs for news, which the skill explicitly requires. It does not instruct reading unrelated system files or environment variables.
Install Mechanism
This is an instruction-only skill with no install spec and no code files to download or run. That minimizes disk persistence and supply-chain risk.
Credentials
The skill requires no environment variables, credentials, or external service tokens. All requested file access is scoped to its own baseDir. The absence of extra secrets is proportionate to the claimed functionality.
Persistence & Privilege
always is false (not force-included). The skill writes/updates files only within its own baseDir (state and references), which is consistent with its stated need to track sent terms and an index of sources. It does not request system-wide configuration changes or other skills' credentials.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install clawvicular
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /clawvicular 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.0
Initial release: 300+ looksmaxxing terms, Clavicular lore, daily tip workflow
元数据
Slug clawvicular
版本 1.0.0
许可证
累计安装 0
当前安装数 0
历史版本数 1
常见问题

Clawvicular 是什么?

Daily looksmaxxing slang tip + Clavicular news. Extremely online Gen Z energy. 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 859 次。

如何安装 Clawvicular?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install clawvicular」即可一键安装,无需额外配置。

Clawvicular 是免费的吗?

是的,Clawvicular 完全免费(开源免费),可自由下载、安装和使用。

Clawvicular 支持哪些平台?

Clawvicular 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 Clawvicular?

由 jefftangx(@jefftangx)开发并维护,当前版本 v1.0.0。

💬 留言讨论