A small collection of practical AI agent skills.
Each top-level folder is a self-contained skill.
Install all skills globally:
npx skills add robin-liquidium/agent-skills -g -yInstall a single skill:
npx skills add robin-liquidium/agent-skills@twitterapi-io -g -yGuarded Telegram access to a personal account via Telethon/MTProto.
npx skills add robin-liquidium/agent-skills@telegram-cli -g -y- list dialogs
- read recent messages from a chat
- search messages
- inspect unread chats and DMs
- send, mark-read, archive, and mute only with explicit approval and
--execute - uses a cached virtualenv bootstrap flow and stores auth state in
~/.config/telegram-cli/config.json
Lightweight DuckDuckGo search as a no-key fallback or second source.
npx skills add robin-liquidium/agent-skills@ddg-search -g -y- text, news, image, and video search
- instant-answer lookups
- DuckDuckGo bang resolution
- local script-based skill with a cached virtualenv bootstrap flow
Read-only Twitter/X data access via twitterapi.io.
npx skills add robin-liquidium/agent-skills@twitterapi-io -g -y- fetch tweets, users, timelines, replies, quote tweets, thread context, mentions, and search results
- local script-based skill, no global CLI required
- stores API key in
~/.config/twitterapi-io/config.json
Google Search Console CLI for the official Search Console API.
npx skills add robin-liquidium/agent-skills@gsc-cli -g -y- list Search Console properties
- query Search Analytics performance rows
- inspect Google's indexed status for a URL
- list/get/submit/delete sitemaps with explicit
--executefor writes - uses headless-friendly browser URL OAuth and stores tokens in
~/.config/gsc-cli/config.json
Local Markdown-to-PDF renderer for clean text-first PDFs.
npx skills add robin-liquidium/agent-skills@markdown-to-pdf -g -yImageMagick CLI workflows for editing, converting, compositing, and compressing raster images.
npx skills add robin-liquidium/agent-skills@imagemagick -g -yGenerate images from prompts and reference images via the Codex ChatGPT subscription (no API key).
npx skills add robin-liquidium/agent-skills@imagegen -g -y- scriptable CLI with explicit output paths and auto-versioning
- up to 5 reference images per generation
- dry-run and auth-status commands
- reuses the local
codex loginChatGPT auth, Python 3.10+ stdlib only
Liquidium SDK helper for accountless instant-loan borrow flows and profile portfolio reads.
npx skills add robin-liquidium/agent-skills@liquidium-borrow -g -y- quote borrow capacity and Liquidium LTV/liquidation risk
- create accountless instant-loan requests without signing or broadcasting wallet transactions
- save local loan references under
~/.local/share/liquidium-borrow/ - refresh status, repayment, add-collateral, deposit detection, and activity instructions
Attach agent browser tooling (playwright-cli, chrome-devtools-mcp) to a running Helium browser with the real user profile.
npx skills add robin-liquidium/agent-skills@helium-browser -g -y- WebSocket-only attach via
DevToolsActivePort(Helium disables HTTP/json/*endpoints) - playwright-cli
attach --cdp=ws://...one-liners per platform - chrome-devtools-mcp
--autoConnect --userDataDirsetup - per-platform Helium user-data directory paths
End-to-end PR delivery workflow for reviewing, opening a PR, monitoring CI and comments, fixing feedback, and merging once clean.
npx skills add robin-liquidium/agent-skills@send-it -g -yEach skill is self-contained:
SKILL.md: agent-facing instructionsscripts/: local entrypoints and helpersreferences/: optional docs or links
Generated local state should live outside the repo where practical: credentials in ~/.config/<skill-name>/, caches and virtualenvs in ~/.cache/<skill-name>/, and durable generated files in ~/.local/share/<skill-name>/.
- ddg-search
- gsc-cli
- telegram-cli
- twitterapi-io
- markdown-to-pdf
- imagemagick
- imagegen
- liquidium-borrow
- helium-browser
- send-it
- The skills in this repo are optimized for real agent workflows, not polished end-user CLIs.
- Keep changes minimal and keep each skill self-contained.