@sigcli/skills
v1.2.4
Published
AI agent skills for authenticated web access via sigcli
Downloads
731
Maintainers
Readme
@sigcli/skills
AI agent skills for authenticated web access via sigcli.
Give your AI agent (Claude, Cursor, Windsurf, Cline) the ability to interact with real websites — read feeds, send messages, post content — using your authenticated sessions managed by sigcli.
Quick Start
npx @sigcli/skillsThis launches an interactive installer that auto-detects your AI agent and lets you pick which skills to install.
Usage
npx @sigcli/skills [options] [skill...]Options
| Flag | Description |
| ---------------- | -------------------------------------------------------------------------------- |
| --agent <name> | Target agent: claude, cursor, windsurf, cline (auto-detected if omitted) |
| --dest <path> | Custom installation directory |
| --all | Install (or uninstall) all skills |
| --list | List available skills and their install status |
| --uninstall | Remove installed skills |
| --help, -h | Show help |
Examples
# Install all skills for Claude
npx @sigcli/skills --all --agent claude
# Install specific skills
npx @sigcli/skills outlook slack x
# Install for Cursor
npx @sigcli/skills --agent cursor
# List available skills
npx @sigcli/skills --list
# Uninstall all skills
npx @sigcli/skills --uninstall --allBundled Skills
| Skill | Platform | Capabilities | | --------------- | -------------------- | ------------------------------------------------- | | bilibili | Bilibili (B站) | Browse videos, search, like, coin, favorite | | hackernews | Hacker News | Browse stories, search, comment, vote, submit | | linkedin | LinkedIn | View profiles/feed, search, post, connect | | msteams | Microsoft Teams | Send/read messages, search, calendar, transcripts | | outlook | Outlook | Read/send email, search, manage folders | | reddit | Reddit | Browse, search, post, comment, vote | | slack | Slack | Read channels, search, send messages, reactions | | v2ex | V2EX | Browse topics, search, reply, thank | | x | X (Twitter) | View/post tweets, like, retweet, follow | | xiaohongshu | Xiaohongshu (小红书) | Browse notes, search, like, comment | | youtube | YouTube | Search, browse channels, comments, like | | zhihu | Zhihu (知乎) | Browse Q&A, search, view profiles | | sigcli-auth | — | Auth system docs and credential management |
How It Works
- Install skills —
npx @sigcli/skillscopies skill files to your agent's skills directory (e.g.~/.claude/skills/) - Authenticate — Use
sig login <provider>to authenticate with each platform via browser - Use — Your AI agent reads the skill docs and calls the bundled Python scripts with credentials injected by sigcli
Agent reads SKILL.md → calls script → sigcli injects credentials → authenticated requestAuthentication
Skills rely on sigcli for credential management. Install the CLI first:
npm install -g @sigcli/cliThen authenticate with the platforms you want to use:
sig login slack.com
sig login reddit.com
sig login x.comYour agent uses sig run to execute scripts with credentials injected as environment variables:
sig run slack -- python3 scripts/read_channel.py --channel general --limit 20Requirements
- Node.js >= 18
- Python 3 (for skill scripts)
- sigcli for authentication
License
MIT
