10 AI Skills I'm Currently Using
Sharing 10 practical AI skills including NotebookLM and Obsidian integrations for productivity and knowledge management.
10 AI Skills Powering My Daily Workflow (And How to Use Them)
Originally shared by @treydtw — expanded and annotated for developers and automation engineers.
If you've been building with OpenClaw or exploring AI automation seriously, you already know that raw model capability is only half the equation. The other half is how well your tools connect to your existing workflows. Skills — the modular, composable integrations that let AI agents interact with real software — are where that second half lives.
After testing dozens of them, here are 10 Skills I keep coming back to, why they matter, and what you can actually do with them.
The Standout Picks: Knowledge Management at Its Best
1. NotebookLM Skill
This is the one that immediately separates hobbyist setups from serious knowledge pipelines. The NotebookLM Skill creates a direct bridge between your AI agent and Google's NotebookLM, letting you programmatically:
- Upload source documents (PDFs, URLs, text files) without touching the UI
- Run structured Q&A against specific notebooks
- Generate summaries, mind maps, and presentation outlines on demand
Why it matters for developers: Most knowledge base integrations require you to pre-process documents, manage embeddings, and maintain retrieval infrastructure yourself. NotebookLM Skill offloads all of that. You point it at a corpus, ask a question, and get a grounded, citation-aware answer — no vector DB required.
Practical use case: Imagine ingesting a 300-page technical spec and immediately querying it for implementation constraints, then piping those constraints directly into a code-generation task. That's a workflow that used to take hours of manual reading or complex RAG setup. With this Skill, it's a few lines of agent logic.
# Example agent task chain
1. Upload spec PDF → NotebookLM Skill
2. Query: "List all authentication requirements"
3. Pass output → code scaffolding agent
4. Generate boilerplate with embedded compliance notes
2. Obsidian Skills (Suite)
The Obsidian Skills suite, notably developed with input from the Obsidian team itself, is the most thoughtfully designed writing-adjacent Skill set I've encountered. It handles things that generic markdown tools get consistently wrong:
- Obsidian-flavored Markdown: internal links (
[[Page Name]]), properties/frontmatter, block references (^block-id), callout syntax .Basefile generation: build and modify Obsidian Bases (the new database-style views) programmatically, including filter logic- Vault-aware context: the Skill understands Obsidian's folder conventions and link graph, so output actually integrates cleanly rather than requiring manual cleanup
Practical use case: You're researching a technical topic across 15 browser tabs. Instead of manually creating notes, you run an agent that pulls key points from each source, structures them as interlinked Obsidian notes with proper properties, and drops them into your vault. Your PKM system stays organized without you becoming the bottleneck.
Automation and Productivity: The Supporting Stack
The NotebookLM and Obsidian Skills get the headlines, but the real power of a Skill-based workflow comes from what surrounds them. Here's how the remaining picks round out a complete automation stack.
3–5. Data Ingestion and Processing Skills
A recurring pattern in production AI workflows is the need to pull structured data from heterogeneous sources — spreadsheets, APIs, scraping targets — and normalize it before any intelligent processing happens. Skills in this category handle:
- CSV/spreadsheet parsing with schema inference, so your agent doesn't need brittle column-index assumptions
- Web scraping with structure extraction, going beyond raw HTML to return typed data (tables, lists, article bodies)
- API wrapping, letting you describe an endpoint once and have the agent handle auth, pagination, and error states
The key value here is reducing the surface area of failure. Every manual data transformation step is a place where the pipeline can break silently. Moving that logic into a tested, versioned Skill makes the whole system more reliable.
6–8. Output and Presentation Skills
Generating content is only useful if it lands in the right format for the right audience. Three Skills that handle the "last mile" of output:
- PPT/Slide generation: converts structured outlines or markdown into presentation files with consistent styling — particularly useful when combining with NotebookLM's summarization output
- Mind map generation: produces visual knowledge graphs from hierarchical text, exportable to common formats (
.mm, Mermaid, etc.) - Document formatting: applies specific style guides, heading hierarchies, and citation formats — the difference between "AI-generated draft" and "ready to send"
A note on mind maps specifically: The combination of NotebookLM Skill (for research synthesis) feeding into a mind map Skill (for visual output) is one of the cleanest demonstration workflows for stakeholders who aren't technical. Ingest a topic, show the knowledge structure visually, in one automated pass.
9–10. Workflow Integration and Agent Coordination Skills
The most underappreciated category. Individual Skills are useful; Skills that help agents coordinate and hand off work are what turn a collection of tools into an actual system.
- Task routing: analyzes incoming requests and routes them to the appropriate downstream Skill or agent, with fallback logic
- Context persistence: maintains shared state across a multi-step agent chain so that each step has access to decisions made earlier without re-prompting
# Simplified coordination pattern
[User Request]
↓
[Router Skill] → classifies intent
↓
[Specialist Skill] → executes task
↓
[Context Persistence Skill] → logs output, updates shared state
↓
[Next task in chain picks up with full context]
This pattern is what separates one-shot AI demos from deployable automation. If your agent forgets what it decided two steps ago, you don't have an agent — you have an expensive autocomplete.
How to Think About Building Your Own Skill Stack
A few principles that have held up across different projects:
Start with your existing friction points. Don't adopt a Skill because it's impressive. Adopt it because there's a specific task you do repeatedly that it makes faster or more reliable. The NotebookLM Skill is genuinely powerful, but if you're not working with large document corpora, it's not your priority.
Prefer composability over coverage. Ten focused Skills that connect cleanly beat twenty broad ones that require constant prompt engineering to get working together. Look for Skills that produce typed, structured outputs — they're the ones that wire into other Skills without friction.
Version your Skill configurations. If a Skill accepts configuration (auth credentials, default behaviors, output formats), treat that configuration as code. Check it into version control. This sounds obvious until you've lost an afternoon debugging a workflow that broke because someone changed a Skill setting and didn't tell anyone.
Test Skills in isolation before chaining them. A chain of five Skills can fail in twenty-five different ways. Know what each Skill's output looks like under normal and edge-case inputs before you connect it to anything else.
Conclusion
The shift toward Skill-based AI workflows isn't just a tooling trend — it reflects a maturing understanding of what makes AI actually useful in production. A model that can reason well but can't connect to your systems is interesting. A model that can reason well and read your documents, write to your note vault, generate your presentations, and hand off context to the next step in a pipeline is genuinely useful.
The 10 Skills above — anchored by the NotebookLM and Obsidian integrations — represent a practical starting point for developers looking to move from experimental AI use to systematic AI-assisted work. None of them require deep ML expertise to deploy. All of them have clear, testable value propositions.
Pick the two or three that address your actual bottlenecks. Get them working reliably. Then expand.
Original post by @treydtw on X. Published on ClawList.io — your resource hub for AI automation and OpenClaw Skills.
Tags
Related Articles
Vercel's React Best Practices as Reusable Skill
Vercel distilled 10 years of React expertise into a skill, demonstrating how organizations should package internal best practices as reusable AI agent skills.
Building Commercial Apps with Claude Opus
Experience sharing on rapid app development using Claude Opus as a CTO, product manager, and designer combined.
AI-Powered Product Marketing with Video and Social Media
Guide on using AI to create product advertisement videos, user testimonials, and product images for social media marketing campaigns.