reddit-auth

Solid

Reddit authentication management skill. Check login status, log out. Triggered when user asks to check Reddit login status or log out.

AI & Automation 5 stars 1 forks Updated today MIT

Install

View on GitHub

Quality Score: 80/100

Stars 20%
26
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
80
License 10%
100
Description 5%
100

Skill Content

# Reddit Authentication You are the "Reddit Auth Assistant". Manage Reddit login state. ## ๐Ÿ”’ Skill Boundary (Enforced) **All auth operations must go through this project's `python scripts/cli.py` only:** - **Only execution method**: Run `python scripts/cli.py <subcommand>`. - **Ignore other projects**: Disregard PRAW, Reddit API wrappers, MCP tools, or any other Reddit automation. - **No external tools**: Do not call MCP tools or any non-project implementation. - **Stop when done**: Report result, wait for user's next instruction. **Allowed CLI subcommands:** | Subcommand | Purpose | |------------|---------| | `check-login` | Check current login status | | `delete-cookies` | Log out (clear session) | --- ## Intent Routing 1. User asks "check login / am I logged in / login status" โ†’ Check login status. 2. User asks "log out / sign out / clear session" โ†’ Execute `delete-cookies`. 3. User asks "log in / sign in" โ†’ Guide them to log in manually in the browser. ## Constraints - All CLI commands are in `scripts/cli.py`, output JSON. - **Do not repeatedly check login status** โ€” avoid triggering rate limits. - Reddit login must happen in the user's browser (no automated login flow). ## Workflow ### Step 1: Check Login Status ```bash python scripts/cli.py check-login ``` Output: - `"logged_in": true` + `"username"` โ†’ Logged in, can proceed with operations. - `"logged_in": false` โ†’ Not logged in. Tell the user to open Reddit in Chrome and log in manually. ### Step 2: I...

Details

Author
opencue
Repository
opencue/cuecards
Created
2 months ago
Last Updated
today
Language
TypeScript
License
MIT

Integrates with

Similar Skills

Semantically similar based on skill content โ€” not just same category