SWSkillsWay.ai
View Repo ↗
Skillset · / intellectronica / agent-skills

intellectronicaintellectronica/agent-skills

Skillset Analysis

Core Idea

Principles & Methodology

The author's design philosophy, what sets this apart from peer projects, and quick notes on the key workflows. Skill names mentioned in the text auto-link to their detail pages.

Core Idea

This skillset is a collection of standalone, task-specific Agent Skills by @intellectronica that extend AI agents with integrations and utilities.

Design Principles

  • Single-purpose: Each skill does one thing well (e.g., anki-connect, context7, gpt-image-1-5).
  • Integration-focused: Covers APIs (Notion, Google, Upstash), dev tools (Copilot SDK, mgrep), and content generation.
  • Model-agnostic: Works with Claude Code, Codex, etc. via Skills CLI or plugin marketplace.

Typical Workflow

User invokes a skill by name or the agent auto-loads it when the request matches (e.g., "render Mermaid" → beautiful-mermaid). No orchestration framework; just composable helpers.

Skill Relationships

Usage Relationships Between Skills

Skill → Skill usage relationships, with cross-layer references. Same color blocks indicate the same skill form.

Relationship Count
0
Standalone Skills
22
Most Referencing
No relationships
Most Referenced
No relationships

Note: Each dependency line reads as "the current Skill depends on" the Skill it points to.

Installation

One command to install the entire Skillset.

Copy and run in your terminal to add intellectronica/agent-skills to your Agent environment.

$npx skills add intellectronica/agent-skills
SkillsWay.ai · Heads-Up Agent Skills InspectorUnderstand Agent Skills before you install.
PurposeA curated collection of Agent Skills by Intellectronica that equip AI agents with specialized capabilities via CLI or plugin marketplaces. Skills are single-purpose helpers covering API integrations (Anki, Notion, Google, Upstash), documentation lookup (Context7), code search (mgrep), image generation (GPT, Nano Banana), and utilities (git init, markdown convert, lorem ipsum). They are model-agnostic, auto-loaded by the agent based on user intent, and suited for extending coding or productivity agents with external service access and content tools.
Skill Count
22
Required CLI
agent-browserbuncopilotcurlgitgogjqmarkitdownmgreptd
Domains
BusinessCodingDesignOthers
Forms
Cli ManualOthersStyle GuideWorkflow

Skill Composition

How skills in this set are triggered

Each skill is designed for a specific kind of caller — some only fire when you name them, others load automatically when the model judges them relevant. The split below summarises both modes at a glance.

User-Invoked0

These skills only fire when you call them by name. The agent will not load them on its own — they stay inert until invoked.

No skill in this set is recommended for manual invocation.

Model-Invoked22

These skills are loaded automatically by the agent when it judges the context relevant. You usually don't need to call them yourself.

anki-connectbeautiful-mermaidcontext7copilot-sdkgog-cligpt-image-1-5here-be-gitlorem-ipsummarkdown-convertermgrep-code-searchmonologue-notes-apinano-banana-2nano-banana-pronotion-apipromptifyraindrop-apiray-so-code-snippettavilytodoist-apiultrathinkupstash-redis-kvyoutube-transcript

Skill List

22 Skills · Filter by name or domain

anki-connect

This skill enables reliable interaction with Anki via the local AnkiConnect HTTP API. It translates user requests into JSON actions, crafts and runs them with curl/jq, and enforces a strict confirmation policy for destructive operations. Value: safely automate deck, note, card, media, and sync management through a clear CLI workflow.

→
Domain
Others
Form
Cli Manual
Location
plugins/anki-connect/skills/SKILL.md

beautiful-mermaid

Renders Mermaid diagrams to SVG and PNG using the Beautiful Mermaid library and agent-browser. It validates/generates Mermaid code, renders vector SVG, captures high-res PNG via headless browser, and cleans up temp files. Outputs scalable SVG and 4K PNG for docs and sharing.

→
Domain
Design
Form
Workflow
Location
plugins/beautiful-mermaid/skills/SKILL.md

context7

Retrieves up-to-date software library docs via Context7 API using curl. Searches library ID then fetches current documentation and code examples. Helps verify API usage and avoid outdated training knowledge for any framework.

→
Domain
Coding
Form
Workflow
Location
plugins/context7/skills/SKILL.md

copilot-sdk

Helps with GitHub Copilot SDK work across Node.js/TypeScript, Python, Go, .NET, and Java. Covers setup, auth, permissions, streaming, custom tools/agents, MCP, hooks, skills, and session persistence via official docs. Value: build Copilot-driven apps correctly with preview-aware, non-stale guidance.

→
Domain
Coding
Form
Workflow
Location
plugins/copilot-sdk/skills/SKILL.md

gog-cli

A fast, script-friendly CLI skill for operating Google Workspace (Gmail, Calendar, Drive, Docs, Sheets, etc.) from the command line via gog/gogcli. Uses JSON-first output, multi-account auth, and agent-safe guardrails (dry-run, no-send). Enables automated, secure Google account/file/mail/calendar tasks with clear commands and references.

→
Domain
Business
Form
Cli Manual
Location
plugins/gog-cli/skills/SKILL.md

gpt-image-1-5

Generate and edit images via OpenAI GPT Image 1.5 using a Python script run with uv. Supports text-to-image, full edits, and mask inpainting with quality/size/background options. Outputs saved PNGs to the working directory for designers and creators.

→
Domain
Design
Form
Cli Manual
Location
plugins/gpt-image-1-5/skills/SKILL.md

here-be-git

Initialises a git repo in the current directory with optional agent commit instructions in AGENTS.md and a tailored .gitignore. Method: run git init, prompt user for commit rules and ignore patterns, then commit config files. Value: sets up version control quickly with guardrails for agent workflows.

→
Domain
Coding
Form
Workflow
Location
plugins/here-be-git/skills/SKILL.md

lorem-ipsum

Generates authentic lorem ipsum placeholder text via a bundled Python script. Method: invoke `uv run scripts/generate.py` with options for length (words, chars, tokens) and structure (paragraphs, headings, bullets, mixed, HTML). Value: produces consistent filler text for drafts, designs, or tests, saved to file or clipboard.

→
Domain
Others
Form
Cli Manual
Location
plugins/lorem-ipsum/skills/SKILL.md

markdown-converter

Converts PDF, Office, HTML, CSV, JSON, XML, images, audio, ZIP, YouTube and EPub files to Markdown via `uvx markitdown` with no install. Output preserves structure for LLM processing or text analysis, supporting file, stdout and stdin with optional Azure enhancement.

→
Domain
Others
Form
Cli Manual
Location
plugins/markdown-converter/skills/SKILL.md

mgrep-code-search

Semantic code search skill using mgrep for efficient exploration of large or nested codebases. It indexes repos via a watcher and supports natural language queries with options for content, AI answers, and sync. Value: complements grep by finding features and intent in unfamiliar code quickly.

→
Domain
Coding
Form
Cli ManualWorkflow
Location
plugins/mgrep-code-search/skills/SKILL.md

monologue-notes-api

Provides direct read-only access to the Monologue Notes REST API for listing, searching, and fetching the authenticated user's notes via curl/jq. Key methods: bearer-token auth, query filters, pagination. Value: secure, scriptable note retrieval without custom libraries.

→
Domain
Others
Form
Cli Manual
Location
plugins/monologue-notes-api/skills/SKILL.md

nano-banana-2

Generate and edit images via Google's Nano Banana 2 (Gemini 3.1 Flash Image Preview) API. Uses a Python script run with uv to create images from text or edit with reference images, supporting resolution 512px–4K and explicit aspect ratios. Outputs PNG files in the project context for fast visual iteration.

→
Domain
Design
Form
Cli Manual
Location
plugins/nano-banana-2/skills/SKILL.md

nano-banana-pro

Generate and edit images via Google's Nano Banana Pro (Gemini 3 Pro Image) API using a Python script. Supports text-to-image and image-to-image editing with 1K/2K/4K resolution. Outputs PNG files to the user's working directory, enabling fast AI image creation and modification from the command line.

→
Domain
Design
Form
Cli Manual
Location
plugins/nano-banana-pro/skills/SKILL.md

notion-api

This skill enables agents to interact with Notion workspaces via the Notion REST API using curl and jq. It covers auth, search, pages, blocks, databases, data sources, and users with rate-limit and confirmation handling. Value: programmatic, scriptable Notion automation and data ops without the UI.

→
Domain
Others
Form
Cli Manual
Location
plugins/notion-api/skills/SKILL.md

promptify

Promptify transforms vague user requests into detailed, precise prompts optimized for AI models. It reads the input, plans needed context, and rewrites it as specification-style markdown following strict structure and language rules. Value: produces unambiguous, ready-to-use prompts that improve AI response quality.

→
Domain
Others
Form
Style Guide
Location
plugins/promptify/skills/SKILL.md

raindrop-api

This skill enables Agent to interact with Raindrop.io bookmark service via REST API using curl and jq. It covers auth, raindrops, collections, tags, highlights, filters, import and backups. Value: programmatic bookmark management with safe destructive-action confirmation.

→
Domain
Others
Form
Cli Manual
Location
plugins/raindrop-api/skills/SKILL.md

ray-so-code-snippet

Generates beautiful code snippet images via ray.so for sharing. Verifies agent-browser, fetches themes/languages, asks all styling params, builds a hash URL, and captures a 4x PNG with agent-browser. Outputs a high-res local image styled to user preference.

→
Domain
Design
Form
Workflow
Location
plugins/ray-so-code-snippet/skills/SKILL.md

tavily

Provides a curl-based interface to Tavily's REST API for web search, extraction, mapping, crawling, and research. Uses endpoints like /search and /extract with API key auth to return LLM-friendly structured results. Value: enables live web data retrieval and multi-step research when no built-in tool is available.

→
Domain
Others
Form
Cli Manual
Location
plugins/tavily/skills/SKILL.md

todoist-api

This skill provides procedural guidance for interacting with Todoist via the `td` CLI. It covers CRUD operations for tasks, projects, sections, labels, comments, and more, with JSON output support and confirmation before destructive actions. Value: lets agents and users manage Todoist efficiently from the command line with safe, structured workflows.

→
Domain
Others
Form
Cli Manual
Location
plugins/todoist-api/skills/SKILL.md

ultrathink

A novelty skill that displays colorful ANSI terminal art of the word "ultrathink" when triggered by the user saying "ultrathink" or invoking /ultrathink. It runs a single printf Bash command with hardcoded escape sequences and produces no other output, serving as a lightweight visual flourish for agent interactions.

→
Domain
Others
Form
Others
Location
plugins/ultrathink/skills/SKILL.md

upstash-redis-kv

A CLI skill to read/write Upstash Redis-compatible KV store via REST API using a bun script. Provides Redis commands (strings, hashes, lists, sets, sorted sets, keys) with confirmation for destructive ops. Enables agents to persist state, cache data, and build queues or leaderboards.

→
Domain
Coding
Form
Cli Manual
Location
plugins/upstash-redis-kv/skills/SKILL.md

youtube-transcript

Extract transcripts from YouTube videos via youtube-transcript-api using a Python script run by uv. Supports URL/ID input with or without timestamps, outputs verbatim text cleaned into paragraphs, saving as a txt file. Value: quick, reliable caption retrieval for analysis or notes.

→
Domain
Others
Form
Cli Manual
Location
plugins/youtube-transcript/skills/SKILL.md

Showing 22 / 22