@hasna/skills 0.1.3 → 0.1.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +354 -330
- package/bin/index.js +687 -196
- package/bin/mcp.js +93 -2
- package/dist/index.d.ts +3 -3
- package/dist/index.js +25 -0
- package/dist/lib/registry.d.ts +1 -0
- package/dist/server/serve.d.ts +5 -1
- package/package.json +1 -1
- package/skills/skill-scancommitpr/SKILL.md +178 -0
- package/skills/skill-scancommitpr/package.json +36 -0
- package/skills/skill-scancommitpr/src/index.ts +44 -0
- package/skills/skill-scancommitpr/tsconfig.json +13 -0
- package/skills/skill-scancommitpush/SKILL.md +174 -0
- package/skills/skill-scancommitpush/package.json +34 -0
- package/skills/skill-scancommitpush/src/index.ts +44 -0
- package/skills/skill-scancommitpush/tsconfig.json +13 -0
- package/skills/skill-hook/bunfig.toml +0 -5
- package/skills/skill-implementation/bunfig.toml +0 -5
package/README.md
CHANGED
|
@@ -1,378 +1,350 @@
|
|
|
1
|
-
#
|
|
1
|
+
# @hasna/skills
|
|
2
2
|
|
|
3
|
-
Open source library
|
|
4
|
-
|
|
5
|
-
## Quick Start
|
|
3
|
+
Open source skill library for AI coding agents. 202 pre-built skills across 17 categories -- search, install, and run any skill with a single command.
|
|
6
4
|
|
|
7
5
|
```bash
|
|
8
|
-
# Interactive mode - browse and select skills
|
|
9
6
|
npx @hasna/skills
|
|
7
|
+
```
|
|
10
8
|
|
|
11
|
-
|
|
12
|
-
npx @hasna/skills install deep-research image generate-pdf
|
|
9
|
+
## Features
|
|
13
10
|
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
11
|
+
- **202 ready-to-use skills** across development, business, content, data, media, design, and more
|
|
12
|
+
- **Interactive TUI** -- browse by category, search, and install from the terminal
|
|
13
|
+
- **MCP server** -- 9 tools and 2 resources for AI agent integration
|
|
14
|
+
- **HTTP dashboard** -- React web UI to browse, search, install, and manage skills
|
|
15
|
+
- **Agent-aware installs** -- copies SKILL.md to `~/.claude/skills/`, `~/.codex/skills/`, or `~/.gemini/skills/`
|
|
16
|
+
- **Auto-generated index** -- `.skills/index.ts` is updated on every install for easy imports
|
|
17
|
+
- **Library exports** -- use the registry, installer, and skill info programmatically
|
|
17
18
|
|
|
18
19
|
## Installation
|
|
19
20
|
|
|
20
21
|
```bash
|
|
21
|
-
# Global install
|
|
22
|
+
# Global install (recommended)
|
|
22
23
|
bun install -g @hasna/skills
|
|
23
24
|
|
|
24
25
|
# Or use npx (no install needed)
|
|
25
26
|
npx @hasna/skills
|
|
26
|
-
```
|
|
27
27
|
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
28
|
+
# Or install as a project dependency
|
|
29
|
+
bun add @hasna/skills
|
|
30
|
+
```
|
|
31
31
|
|
|
32
|
-
|
|
32
|
+
## Quick Start
|
|
33
33
|
|
|
34
34
|
```bash
|
|
35
|
+
# Launch interactive browser (TUI)
|
|
35
36
|
skills
|
|
37
|
+
|
|
38
|
+
# Search for skills
|
|
39
|
+
skills search "image generation"
|
|
40
|
+
|
|
41
|
+
# Install skills to .skills/ in your project
|
|
42
|
+
skills install image deep-research generate-pdf
|
|
43
|
+
|
|
44
|
+
# Install a skill for Claude Code (copies SKILL.md)
|
|
45
|
+
skills install image --for claude
|
|
46
|
+
|
|
47
|
+
# Get skill details
|
|
48
|
+
skills info image
|
|
49
|
+
|
|
50
|
+
# Run a skill directly
|
|
51
|
+
skills run image --prompt "a sunset over mountains"
|
|
52
|
+
|
|
53
|
+
# Start the web dashboard
|
|
54
|
+
skills serve
|
|
36
55
|
```
|
|
37
56
|
|
|
38
|
-
|
|
57
|
+
## Categories
|
|
58
|
+
|
|
59
|
+
| Category | Count | Examples |
|
|
60
|
+
|----------|------:|---------|
|
|
61
|
+
| Development Tools | 32 | api-test-suite, deploy, mcp-builder, scaffold-project |
|
|
62
|
+
| Business & Marketing | 25 | email-campaign, salescopy, seo-brief-builder, persona-generator |
|
|
63
|
+
| Finance & Compliance | 16 | invoice, extract-invoice, budget-variance-analyzer |
|
|
64
|
+
| Content Generation | 14 | image, video, audio, generate-pdf, generate-presentation |
|
|
65
|
+
| Media Processing | 13 | subtitle, transcript, compress-video, remove-background |
|
|
66
|
+
| Data & Analysis | 12 | analyze-data, extract, dashboard-builder, generate-chart |
|
|
67
|
+
| Productivity & Organization | 11 | convert, merge-pdfs, file-organizer, notion-manager |
|
|
68
|
+
| Design & Branding | 11 | brand-style-guide, generate-favicon, product-mockup |
|
|
69
|
+
| Research & Writing | 10 | deepresearch, write, create-blog-article, create-ebook |
|
|
70
|
+
| Science & Academic | 10 | advanced-math, chemistry-calculator, citation-formatter |
|
|
71
|
+
| Education & Learning | 10 | study-guide-builder, lesson-plan-customizer, exam-readiness-check |
|
|
72
|
+
| Project Management | 9 | implementation, implementation-plan, action-item-router |
|
|
73
|
+
| Health & Wellness | 8 | meal-plan-designer, workout-cycle-planner, habit-reflection-digest |
|
|
74
|
+
| Travel & Lifestyle | 7 | itinerary-architect, destination-briefing, travel-budget-balancer |
|
|
75
|
+
| Communication | 4 | gmail, slack-assistant, sms, calendar-events |
|
|
76
|
+
| Web & Browser | 4 | browse, webcrawling, domainsearch, domainpurchase |
|
|
77
|
+
| Event Management | 4 | seating-chart-maker, livestream-runofshow, onsite-ops-checklist |
|
|
78
|
+
|
|
79
|
+
## CLI Commands
|
|
80
|
+
|
|
81
|
+
| Command | Alias | Description |
|
|
82
|
+
|---------|-------|-------------|
|
|
83
|
+
| `skills` | `skills i` | Interactive TUI browser (default) |
|
|
84
|
+
| `skills install <names...>` | `skills add` | Install one or more skills to `.skills/` |
|
|
85
|
+
| `skills install <name> --for <agent>` | | Install SKILL.md for claude, codex, gemini, or all |
|
|
86
|
+
| `skills remove <name>` | `skills rm` | Remove an installed skill |
|
|
87
|
+
| `skills list` | `skills ls` | List all available skills |
|
|
88
|
+
| `skills list --category <cat>` | | List skills in a category |
|
|
89
|
+
| `skills list --installed` | | List installed skills |
|
|
90
|
+
| `skills search <query>` | | Search skills by name, description, or tags |
|
|
91
|
+
| `skills info <name>` | | Show skill metadata, requirements, and env vars |
|
|
92
|
+
| `skills docs <name>` | | Show skill documentation (SKILL.md/README.md/CLAUDE.md) |
|
|
93
|
+
| `skills requires <name>` | | Show env vars, system deps, and npm dependencies |
|
|
94
|
+
| `skills run <name> [args...]` | | Run a skill directly |
|
|
95
|
+
| `skills categories` | | List all categories with counts |
|
|
96
|
+
| `skills init` | | Generate `.env.example` and update `.gitignore` |
|
|
97
|
+
| `skills update [names...]` | | Update installed skills (reinstall with overwrite) |
|
|
98
|
+
| `skills serve` | | Start the HTTP dashboard (auto-assigns free port) |
|
|
99
|
+
| `skills mcp` | | Start the MCP server on stdio |
|
|
100
|
+
| `skills mcp --register <agent>` | | Register MCP server with claude, codex, gemini, or all |
|
|
101
|
+
| `skills self-update` | | Update `@hasna/skills` to the latest version |
|
|
102
|
+
|
|
103
|
+
All list/search/info commands support `--json` for machine-readable output.
|
|
104
|
+
|
|
105
|
+
## MCP Server
|
|
106
|
+
|
|
107
|
+
The MCP server exposes the full skill library to AI agents over stdio.
|
|
108
|
+
|
|
109
|
+
### Starting the server
|
|
39
110
|
|
|
40
111
|
```bash
|
|
41
|
-
#
|
|
42
|
-
skills
|
|
112
|
+
# Via CLI
|
|
113
|
+
skills mcp
|
|
43
114
|
|
|
44
|
-
#
|
|
115
|
+
# Direct binary
|
|
116
|
+
skills-mcp
|
|
117
|
+
|
|
118
|
+
# Register with Claude Code
|
|
119
|
+
skills mcp --register claude
|
|
45
120
|
```
|
|
46
121
|
|
|
47
|
-
###
|
|
122
|
+
### Configuration for Claude Code
|
|
48
123
|
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
124
|
+
Add to your MCP config:
|
|
125
|
+
|
|
126
|
+
```json
|
|
127
|
+
{
|
|
128
|
+
"mcpServers": {
|
|
129
|
+
"skills": {
|
|
130
|
+
"command": "skills-mcp"
|
|
131
|
+
}
|
|
132
|
+
}
|
|
133
|
+
}
|
|
53
134
|
```
|
|
54
135
|
|
|
55
|
-
###
|
|
136
|
+
### Tools (9)
|
|
137
|
+
|
|
138
|
+
| Tool | Description |
|
|
139
|
+
|------|-------------|
|
|
140
|
+
| `list_skills` | List all skills, optionally filtered by category |
|
|
141
|
+
| `search_skills` | Search skills by query (name, description, tags) |
|
|
142
|
+
| `get_skill_info` | Get skill metadata including requirements and env vars |
|
|
143
|
+
| `get_skill_docs` | Get documentation (SKILL.md, README.md, or CLAUDE.md) |
|
|
144
|
+
| `install_skill` | Install a skill (full source to `.skills/` or SKILL.md to agent dir) |
|
|
145
|
+
| `remove_skill` | Remove an installed skill |
|
|
146
|
+
| `list_categories` | List all categories with skill counts |
|
|
147
|
+
| `get_requirements` | Get env vars, system deps, and npm dependencies |
|
|
148
|
+
| `run_skill` | Run a skill by name with optional arguments |
|
|
149
|
+
|
|
150
|
+
### Resources (2)
|
|
151
|
+
|
|
152
|
+
| URI | Description |
|
|
153
|
+
|-----|-------------|
|
|
154
|
+
| `skills://registry` | Full skill registry as JSON |
|
|
155
|
+
| `skills://{name}` | Individual skill metadata and documentation |
|
|
156
|
+
|
|
157
|
+
## HTTP Dashboard
|
|
158
|
+
|
|
159
|
+
A React web UI for browsing, searching, and managing skills.
|
|
56
160
|
|
|
57
161
|
```bash
|
|
58
|
-
|
|
59
|
-
skills
|
|
162
|
+
# Start the dashboard
|
|
163
|
+
skills serve
|
|
164
|
+
|
|
165
|
+
# Custom port
|
|
166
|
+
skills serve --port 8080
|
|
167
|
+
|
|
168
|
+
# Don't auto-open browser
|
|
169
|
+
skills serve --no-open
|
|
60
170
|
```
|
|
61
171
|
|
|
62
|
-
|
|
172
|
+
The dashboard picks a random free port automatically (or use `--port` to pin one) and provides:
|
|
63
173
|
|
|
64
|
-
|
|
65
|
-
|
|
174
|
+
- Searchable, sortable skills table with category filters
|
|
175
|
+
- Skill detail dialog with documentation, tags, and requirements
|
|
176
|
+
- One-click install and remove
|
|
177
|
+
- Dark/light/system theme toggle
|
|
178
|
+
- Self-update button
|
|
179
|
+
|
|
180
|
+
### REST API
|
|
181
|
+
|
|
182
|
+
The dashboard server also exposes a REST API:
|
|
183
|
+
|
|
184
|
+
| Endpoint | Method | Description |
|
|
185
|
+
|----------|--------|-------------|
|
|
186
|
+
| `/api/skills` | GET | All skills with install status |
|
|
187
|
+
| `/api/categories` | GET | Categories with counts |
|
|
188
|
+
| `/api/skills/search?q=` | GET | Search skills |
|
|
189
|
+
| `/api/skills/:name` | GET | Single skill detail with docs |
|
|
190
|
+
| `/api/skills/:name/docs` | GET | Raw documentation text |
|
|
191
|
+
| `/api/skills/:name/install` | POST | Install a skill |
|
|
192
|
+
| `/api/skills/:name/remove` | POST | Remove a skill |
|
|
193
|
+
| `/api/version` | GET | Current package version |
|
|
194
|
+
| `/api/self-update` | POST | Update to latest version |
|
|
195
|
+
|
|
196
|
+
## Library Usage
|
|
197
|
+
|
|
198
|
+
Use the registry, installer, and skill info modules programmatically:
|
|
199
|
+
|
|
200
|
+
```typescript
|
|
201
|
+
import {
|
|
202
|
+
SKILLS,
|
|
203
|
+
CATEGORIES,
|
|
204
|
+
searchSkills,
|
|
205
|
+
getSkill,
|
|
206
|
+
getSkillsByCategory,
|
|
207
|
+
} from "@hasna/skills";
|
|
208
|
+
|
|
209
|
+
// Search skills
|
|
210
|
+
const results = searchSkills("image");
|
|
211
|
+
|
|
212
|
+
// Get skills in a category
|
|
213
|
+
const devTools = getSkillsByCategory("Development Tools");
|
|
214
|
+
|
|
215
|
+
// Get a specific skill
|
|
216
|
+
const skill = getSkill("image");
|
|
217
|
+
// => { name: "image", displayName: "Image", description: "...", category: "Content Generation", tags: [...] }
|
|
218
|
+
```
|
|
219
|
+
|
|
220
|
+
```typescript
|
|
221
|
+
import {
|
|
222
|
+
installSkill,
|
|
223
|
+
installSkillForAgent,
|
|
224
|
+
removeSkill,
|
|
225
|
+
getInstalledSkills,
|
|
226
|
+
} from "@hasna/skills";
|
|
227
|
+
|
|
228
|
+
// Install a skill to .skills/
|
|
229
|
+
const result = installSkill("image");
|
|
230
|
+
// => { skill: "image", success: true, path: "/path/to/.skills/skill-image" }
|
|
231
|
+
|
|
232
|
+
// Install SKILL.md for Claude Code
|
|
233
|
+
installSkillForAgent("image", { agent: "claude", scope: "global" });
|
|
234
|
+
|
|
235
|
+
// List installed skills
|
|
236
|
+
const installed = getInstalledSkills();
|
|
237
|
+
// => ["image", "deep-research"]
|
|
238
|
+
```
|
|
239
|
+
|
|
240
|
+
```typescript
|
|
241
|
+
import {
|
|
242
|
+
getSkillDocs,
|
|
243
|
+
getSkillRequirements,
|
|
244
|
+
runSkill,
|
|
245
|
+
} from "@hasna/skills";
|
|
246
|
+
|
|
247
|
+
// Read documentation
|
|
248
|
+
const docs = getSkillDocs("image");
|
|
249
|
+
// => { skillMd: "...", readme: "...", claudeMd: "..." }
|
|
250
|
+
|
|
251
|
+
// Check requirements
|
|
252
|
+
const reqs = getSkillRequirements("image");
|
|
253
|
+
// => { envVars: ["OPENAI_API_KEY"], systemDeps: [], cliCommand: "image", dependencies: {...} }
|
|
254
|
+
|
|
255
|
+
// Run a skill
|
|
256
|
+
const { exitCode } = await runSkill("image", ["--prompt", "a cat"]);
|
|
257
|
+
```
|
|
258
|
+
|
|
259
|
+
## Skill Structure
|
|
260
|
+
|
|
261
|
+
Each skill is a self-contained directory under `skills/skill-{name}/`:
|
|
262
|
+
|
|
263
|
+
```
|
|
264
|
+
skills/skill-{name}/
|
|
265
|
+
├── src/
|
|
266
|
+
│ ├── index.ts # Main entry point / programmatic API
|
|
267
|
+
│ ├── commands/ # CLI command handlers (optional)
|
|
268
|
+
│ ├── lib/ # Core logic
|
|
269
|
+
│ ├── types/ # TypeScript types
|
|
270
|
+
│ └── utils/ # Utility functions
|
|
271
|
+
├── SKILL.md # Skill definition (used by agent installs)
|
|
272
|
+
├── README.md # Usage documentation
|
|
273
|
+
├── CLAUDE.md # Development guide (optional)
|
|
274
|
+
├── package.json # Dependencies and bin entry
|
|
275
|
+
└── tsconfig.json # Extends skills/tsconfig.base.json
|
|
66
276
|
```
|
|
67
277
|
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
| api-test-suite | Generate and run API test suites with comprehensive endpoint coverage |
|
|
74
|
-
| apidocs | Agentic web crawler for API documentation indexing and semantic search |
|
|
75
|
-
| codefix | Code quality CLI for auto-linting, formatting, and fixing code issues |
|
|
76
|
-
| consolelog | Monitor console logs from web applications using Playwright headless browser |
|
|
77
|
-
| database-explorer | Explore and query databases with an interactive interface |
|
|
78
|
-
| deploy | Deployment CLI for managing EC2 deployments with automated health checks |
|
|
79
|
-
| diff-viewer | View and analyze file differences with visual diff representation |
|
|
80
|
-
| e2bswarm | Spawn E2B sandbox instances for parallel Claude Code task execution |
|
|
81
|
-
| generate-api-client | Generate API client libraries from OpenAPI specs and documentation |
|
|
82
|
-
| generate-dockerfile | Generate optimized Dockerfiles for containerized applications |
|
|
83
|
-
| generate-documentation | Generate comprehensive project documentation from codebase analysis |
|
|
84
|
-
| generate-env | Generate environment variable files from templates and configurations |
|
|
85
|
-
| generate-mock-data | Generate realistic mock data for testing and development |
|
|
86
|
-
| generate-pr-description | Generate pull request descriptions from code diffs and commit history |
|
|
87
|
-
| generate-regex | Generate regular expressions from natural language descriptions |
|
|
88
|
-
| generate-sitemap | Generate XML sitemaps for websites and web applications |
|
|
89
|
-
| generate-sql | Generate SQL queries and database schemas from natural language |
|
|
90
|
-
| github-manager | Manage GitHub repositories, issues, PRs, and workflows |
|
|
91
|
-
| hook | Claude Code hook creation skill - generates standardized hook scaffolds |
|
|
92
|
-
| http-server | Spin up local HTTP servers for development and testing |
|
|
93
|
-
| lorem-generator | Generate placeholder text in various styles and lengths |
|
|
94
|
-
| managehook | Manage Claude Code hooks with install, configure, and lifecycle operations |
|
|
95
|
-
| managemcp | Manage MCP servers with install, configure, and lifecycle operations |
|
|
96
|
-
| manageskill | Manage Claude Code skills with install, configure, and lifecycle operations |
|
|
97
|
-
| markdown-validator | Validate markdown files for syntax, links, and formatting issues |
|
|
98
|
-
| mcp-builder | Build MCP server packages with standardized structure and tooling |
|
|
99
|
-
| npmpublish | Publish npm packages with sensible defaults: private access, patch version bumps |
|
|
100
|
-
| regex-tester | Test and validate regular expressions with sample inputs |
|
|
101
|
-
| scaffold-project | Scaffold new projects with standardized structure and boilerplate |
|
|
102
|
-
| security-audit | Perform security audits on codebases and infrastructure configurations |
|
|
103
|
-
| terraform-generator | Generate Terraform infrastructure-as-code configurations |
|
|
104
|
-
| validate-config | Validate configuration files for syntax and schema compliance |
|
|
105
|
-
|
|
106
|
-
### Business & Marketing (25)
|
|
107
|
-
| Skill | Description |
|
|
108
|
-
|-------|-------------|
|
|
109
|
-
| ad-creative-generator | Generate ad creatives with copy, visuals, and layouts for marketing campaigns |
|
|
110
|
-
| banner-ad-suite | Create banner ad sets in multiple sizes for display advertising campaigns |
|
|
111
|
-
| campaign-metric-brief | Generate campaign performance metric briefs and analytics summaries |
|
|
112
|
-
| campaign-moodboard | Create visual moodboards for marketing and creative campaigns |
|
|
113
|
-
| caption-style-stylist | Style and format captions for social media and video content |
|
|
114
|
-
| churn-risk-notifier | Identify and notify about customer churn risk indicators |
|
|
115
|
-
| competitor-ad-analyzer | Analyze competitor advertising strategies, creatives, and messaging |
|
|
116
|
-
| crm-note-enhancer | Enhance CRM notes with structured summaries and action items |
|
|
117
|
-
| customer-journey-mapper | Map and visualize customer journey touchpoints and experiences |
|
|
118
|
-
| email-campaign | Design and create email marketing campaigns with templates and sequences |
|
|
119
|
-
| feedback-survey-designer | Design feedback surveys with optimized questions and response formats |
|
|
120
|
-
| generate-social-posts | Generate social media posts optimized for different platforms |
|
|
121
|
-
| landing-page-copy | Write conversion-optimized landing page copy with headlines and CTAs |
|
|
122
|
-
| onboarding-sequence-builder | Build employee or customer onboarding sequences with steps and milestones |
|
|
123
|
-
| outreach-cadence-designer | Design multi-touch outreach cadences for sales and marketing campaigns |
|
|
124
|
-
| partner-kit-assembler | Assemble partner kits with brand assets, guidelines, and marketing materials |
|
|
125
|
-
| persona-based-adwriter | Write targeted ads based on customer persona profiles |
|
|
126
|
-
| persona-generator | Generate detailed customer and user personas for marketing and UX |
|
|
127
|
-
| product-demo-script | Write product demo scripts with talking points and flow |
|
|
128
|
-
| sales-call-recapper | Recap sales calls with key points, objections, and follow-up actions |
|
|
129
|
-
| salescopy | Generate persuasive sales copy using AI for products and services |
|
|
130
|
-
| seo-brief-builder | Build SEO content briefs with keyword research and competitive analysis |
|
|
131
|
-
| social-media-kit | Create social media kits with graphics, templates, and brand guidelines |
|
|
132
|
-
| sponsorship-proposal-lab | Create sponsorship proposals with packages, ROI projections, and benefits |
|
|
133
|
-
| webinar-script-coach | Coach and refine webinar scripts with engagement tips and flow optimization |
|
|
134
|
-
|
|
135
|
-
### Productivity & Organization (11)
|
|
136
|
-
| Skill | Description |
|
|
137
|
-
|-------|-------------|
|
|
138
|
-
| convert | File format conversion CLI with AI-powered extraction between images, PDFs, documents, and data formats |
|
|
139
|
-
| decision-journal | Track and reflect on decisions with structured journaling |
|
|
140
|
-
| file-organizer | Organize files into structured directories based on type, date, or content |
|
|
141
|
-
| folder-tree | Generate and display folder tree structures for documentation |
|
|
142
|
-
| form-filler | Automatically fill out web forms and document templates |
|
|
143
|
-
| inbox-priority-planner | Prioritize and organize email inbox items by importance and urgency |
|
|
144
|
-
| meeting-insight-summarizer | Summarize meetings with key insights, decisions, and action items |
|
|
145
|
-
| merge-pdfs | Merge multiple PDF files into a single document |
|
|
146
|
-
| notion-manager | Advanced Notion management with templates, automation, and bulk operations |
|
|
147
|
-
| personal-daily-ops | Manage personal daily operations with routines, tasks, and priorities |
|
|
148
|
-
| split-pdf | Split PDF documents into separate pages or sections |
|
|
149
|
-
|
|
150
|
-
### Project Management (9)
|
|
151
|
-
| Skill | Description |
|
|
152
|
-
|-------|-------------|
|
|
153
|
-
| action-item-router | Route and assign action items from meetings or documents to appropriate owners |
|
|
154
|
-
| businessactivity | Business activity, workflow, and ownership management service |
|
|
155
|
-
| delegation-brief-writer | Write clear delegation briefs with context, expectations, and deadlines |
|
|
156
|
-
| goal-quarterly-roadmap | Create quarterly goal roadmaps with milestones and tracking |
|
|
157
|
-
| implementation | Create .implementation scaffold for project development tracking |
|
|
158
|
-
| implementation-agent | AI agent for managing implementation workflows and task execution |
|
|
159
|
-
| implementation-plan | Generate detailed implementation plans with phases and milestones |
|
|
160
|
-
| implementation-todo | Manage implementation task lists and todo items |
|
|
161
|
-
| project-retro-companion | Facilitate project retrospectives with structured reflection and action items |
|
|
162
|
-
|
|
163
|
-
### Content Generation (14)
|
|
164
|
-
| Skill | Description |
|
|
165
|
-
|-------|-------------|
|
|
166
|
-
| audio | Generate high-quality audio using AI-powered text-to-speech APIs |
|
|
167
|
-
| audiobook-chapter-proofer | Proofread and validate audiobook chapters for consistency and quality |
|
|
168
|
-
| emoji | Generate complete emoji packs using AI with DALL-E 3 or Gemini |
|
|
169
|
-
| generate-diagram | Generate diagrams including flowcharts, sequence diagrams, and system architecture |
|
|
170
|
-
| generate-docx | Generate DOCX documents with formatted content and styling |
|
|
171
|
-
| generate-excel | Generate Excel spreadsheets with formatted data, formulas, and charts |
|
|
172
|
-
| generate-pdf | Generate PDF documents with rich formatting and layouts |
|
|
173
|
-
| generate-presentation | Generate presentation decks with slides, content, and visuals |
|
|
174
|
-
| generate-qrcode | Generate QR codes with custom styling and embedded data |
|
|
175
|
-
| generate-resume | Generate professional resumes with formatting and content optimization |
|
|
176
|
-
| image | Generate images using multiple AI providers: DALL-E 3, Imagen 3, and Aurora |
|
|
177
|
-
| jingle-composer | Compose advertising jingles and short musical pieces for brands |
|
|
178
|
-
| video | Generate videos using AI models from Google Veo, OpenAI Sora, and Runway |
|
|
179
|
-
| voiceover-casting-assistant | Assist with voiceover casting by matching voice profiles to project needs |
|
|
180
|
-
|
|
181
|
-
### Finance & Compliance (16)
|
|
182
|
-
| Skill | Description |
|
|
183
|
-
|-------|-------------|
|
|
184
|
-
| budget-variance-analyzer | Analyze budget versus actual spending with variance reporting |
|
|
185
|
-
| compliance-copy-check | Check marketing copy for regulatory compliance and legal requirements |
|
|
186
|
-
| compliance-report-pack | Generate compliance report packages for regulatory submissions |
|
|
187
|
-
| contract-plainlanguage | Convert legal contracts into plain language summaries for easy understanding |
|
|
188
|
-
| extract-invoice | Extract structured data from invoice documents using AI |
|
|
189
|
-
| forecast-scenario-lab | Model business forecast scenarios with multiple variable assumptions |
|
|
190
|
-
| grant-application-drafter | Draft grant applications with structured proposals and budgets |
|
|
191
|
-
| invoice | Generate professional invoices with company management and PDF export |
|
|
192
|
-
| invoice-dispute-helper | Assist with invoice disputes by analyzing charges and generating responses |
|
|
193
|
-
| payroll-change-prepper | Prepare payroll change documentation and calculations |
|
|
194
|
-
| procurement-scorecard | Generate procurement scorecards for vendor evaluation and comparison |
|
|
195
|
-
| proposal-redline-advisor | Review and redline proposals with suggested edits and negotiations |
|
|
196
|
-
| risk-disclosure-kit | Generate risk disclosure documents and compliance statements |
|
|
197
|
-
| roi-comparison-tool | Compare return on investment across different options and scenarios |
|
|
198
|
-
| subscription-spend-watcher | Track and analyze subscription spending with alerts and optimization tips |
|
|
199
|
-
| timesheet | Generate employee timesheets with multi-profile support |
|
|
200
|
-
|
|
201
|
-
### Data & Analysis (12)
|
|
202
|
-
| Skill | Description |
|
|
203
|
-
|-------|-------------|
|
|
204
|
-
| analyze-data | Data science insights for CSV and JSON datasets with statistical analysis |
|
|
205
|
-
| anomaly-investigator | Investigate and diagnose anomalies in data, logs, and system metrics |
|
|
206
|
-
| benchmark-finder | Find industry benchmarks and performance metrics for comparison analysis |
|
|
207
|
-
| dashboard-builder | Build data dashboards with charts, metrics, and visualizations |
|
|
208
|
-
| dashboard-narrator | Generate narrative summaries from dashboard data and metrics |
|
|
209
|
-
| data-anonymizer | Anonymize sensitive data in datasets for privacy compliance |
|
|
210
|
-
| dataset-health-check | Validate dataset quality with completeness, consistency, and accuracy checks |
|
|
211
|
-
| extract | Extract text and structured data from images and PDFs using OpenAI Vision |
|
|
212
|
-
| generate-chart | Generate data charts and visualizations from datasets |
|
|
213
|
-
| kpi-digest-generator | Generate KPI digest reports with trends, alerts, and performance summaries |
|
|
214
|
-
| spreadsheet-cleanroom | Clean and sanitize spreadsheet data for analysis readiness |
|
|
215
|
-
| survey-insight-extractor | Extract actionable insights and trends from survey response data |
|
|
216
|
-
|
|
217
|
-
### Media Processing (13)
|
|
218
|
-
| Skill | Description |
|
|
219
|
-
|-------|-------------|
|
|
220
|
-
| audio-cleanup-lab | Professional audio cleanup recipes with structured workflows for processing audio files |
|
|
221
|
-
| compress-video | Compress video files while preserving visual quality using ffmpeg |
|
|
222
|
-
| extract-audio | Extract audio tracks from video files with multiple format support |
|
|
223
|
-
| extract-frames | Extract frames from video files at specified intervals or timestamps |
|
|
224
|
-
| gif-maker | Create animated GIFs from images, videos, or screen recordings |
|
|
225
|
-
| highlight-reel-generator | Generate video highlight reels from longer content with key moments |
|
|
226
|
-
| remove-background | Remove backgrounds from images using AI segmentation |
|
|
227
|
-
| subtitle | Generate styled subtitles from audio using OpenAI Whisper |
|
|
228
|
-
| transcript | Generate transcripts from audio and video files with timestamps |
|
|
229
|
-
| video-cut-suggester | Suggest video cuts and edits based on content analysis and pacing |
|
|
230
|
-
| video-downloader | Download videos from various online platforms and services |
|
|
231
|
-
| video-thumbnail | Generate eye-catching video thumbnails with text overlays |
|
|
232
|
-
| watermark | Add watermarks to images and documents for copyright protection |
|
|
233
|
-
|
|
234
|
-
### Design & Branding (11)
|
|
235
|
-
| Skill | Description |
|
|
236
|
-
|-------|-------------|
|
|
237
|
-
| brand-style-guide | Generate comprehensive brand style guides with visual identity guidelines |
|
|
238
|
-
| brand-voice-audit | Audit content for brand voice consistency and tone alignment |
|
|
239
|
-
| color-palette-harmonizer | Generate harmonious color palettes for design and branding projects |
|
|
240
|
-
| generate-book-cover | Generate professional book cover designs with AI |
|
|
241
|
-
| generate-favicon | Generate favicons in multiple sizes and formats for websites |
|
|
242
|
-
| microcopy-generator | Generate UI microcopy including button text, tooltips, and error messages |
|
|
243
|
-
| packaging-concept-studio | Design product packaging concepts with mockups and specifications |
|
|
244
|
-
| presentation-theme-maker | Create custom presentation themes with color schemes and layouts |
|
|
245
|
-
| print-collateral-designer | Design print collateral including brochures, flyers, and business cards |
|
|
246
|
-
| product-mockup | Generate product mockups for visualization and marketing materials |
|
|
247
|
-
| testimonial-graphics | Create visual testimonial graphics for social proof and marketing |
|
|
248
|
-
|
|
249
|
-
### Web & Browser (4)
|
|
250
|
-
| Skill | Description |
|
|
251
|
-
|-------|-------------|
|
|
252
|
-
| browse | Browser automation using Browser-Use Cloud API for AI agents |
|
|
253
|
-
| domainpurchase | Purchase and manage domains via GoDaddy API |
|
|
254
|
-
| domainsearch | Search domain availability and suggestions via GoDaddy API |
|
|
255
|
-
| webcrawling | Web crawling service using Firecrawl API for content extraction |
|
|
256
|
-
|
|
257
|
-
### Research & Writing (10)
|
|
258
|
-
| Skill | Description |
|
|
259
|
-
|-------|-------------|
|
|
260
|
-
| blog-topic-cluster | Generate topic clusters and content strategies for blog SEO planning |
|
|
261
|
-
| copytone-translator | Translate copy between different tones and writing styles |
|
|
262
|
-
| create-blog-article | Create SEO-optimized blog articles with structured content |
|
|
263
|
-
| create-ebook | Create complete eBooks with chapters, formatting, and cover design |
|
|
264
|
-
| deepresearch | Agentic deep research using Exa.ai for parallel semantic search and LLM synthesis |
|
|
265
|
-
| faq-packager | Package and organize frequently asked questions into structured documents |
|
|
266
|
-
| longform-structurer | Structure long-form content with outlines, chapters, and sections |
|
|
267
|
-
| podcast-show-notes | Generate podcast show notes with timestamps, summaries, and links |
|
|
268
|
-
| press-release-drafter | Draft professional press releases for announcements and media distribution |
|
|
269
|
-
| write | Write short or long-form content - articles, books, documentation at scale |
|
|
270
|
-
|
|
271
|
-
### Science & Academic (10)
|
|
272
|
-
| Skill | Description |
|
|
273
|
-
|-------|-------------|
|
|
274
|
-
| academic-journal-matcher | Match research papers to appropriate academic journals for submission |
|
|
275
|
-
| advanced-math | Solve advanced mathematical problems including calculus, algebra, and statistics |
|
|
276
|
-
| bio-sequence-tool | Analyze and manipulate biological sequences including DNA, RNA, and protein data |
|
|
277
|
-
| chemistry-calculator | Perform chemistry calculations including molecular weights, reactions, and stoichiometry |
|
|
278
|
-
| citation-formatter | Format academic citations in APA, MLA, Chicago, and other styles |
|
|
279
|
-
| experiment-power-calculator | Calculate statistical power and sample size for experiments |
|
|
280
|
-
| lab-notebook-formatter | Format laboratory notebook entries with structured scientific records |
|
|
281
|
-
| latex-table-generator | Generate formatted LaTeX tables from data for academic papers |
|
|
282
|
-
| scientific-figure-check | Validate scientific figures for accuracy, formatting, and publication standards |
|
|
283
|
-
| statistical-test-selector | Recommend appropriate statistical tests based on data and research questions |
|
|
284
|
-
|
|
285
|
-
### Education & Learning (10)
|
|
286
|
-
| Skill | Description |
|
|
287
|
-
|-------|-------------|
|
|
288
|
-
| classroom-newsletter-kit | Create classroom newsletters with templates for teachers and educators |
|
|
289
|
-
| educational-resource-finder | Find educational resources, courses, and learning materials by topic |
|
|
290
|
-
| exam-readiness-check | Assess exam readiness with practice questions and gap analysis |
|
|
291
|
-
| field-trip-planner | Plan educational field trips with logistics, safety, and learning objectives |
|
|
292
|
-
| homework-feedback-coach | Provide constructive feedback on homework assignments with improvement suggestions |
|
|
293
|
-
| learning-style-profiler | Profile individual learning styles and recommend personalized study strategies |
|
|
294
|
-
| lesson-plan-customizer | Customize lesson plans for different age groups, subjects, and learning objectives |
|
|
295
|
-
| parent-teacher-brief | Generate parent-teacher conference briefs with student progress summaries |
|
|
296
|
-
| scholarship-tracker | Track scholarship applications, deadlines, and requirements |
|
|
297
|
-
| study-guide-builder | Build comprehensive study guides with summaries, key concepts, and practice questions |
|
|
298
|
-
|
|
299
|
-
### Communication (4)
|
|
300
|
-
| Skill | Description |
|
|
301
|
-
|-------|-------------|
|
|
302
|
-
| calendar-events | Create, manage, and organize calendar events and scheduling |
|
|
303
|
-
| gmail | Compose Gmail messages with AI assistance |
|
|
304
|
-
| slack-assistant | Automate Slack interactions with message management and channel operations |
|
|
305
|
-
| sms | Send and receive SMS messages via Twilio |
|
|
306
|
-
|
|
307
|
-
### Health & Wellness (8)
|
|
308
|
-
| Skill | Description |
|
|
309
|
-
|-------|-------------|
|
|
310
|
-
| grocery-basket-optimizer | Optimize grocery shopping lists for budget, nutrition, and preferences |
|
|
311
|
-
| habit-reflection-digest | Generate habit tracking digests with reflection prompts and insights |
|
|
312
|
-
| meal-plan-designer | Design weekly meal plans with nutrition, recipes, and shopping lists |
|
|
313
|
-
| mindfulness-prompt-cache | Curate and deliver mindfulness prompts for meditation and relaxation |
|
|
314
|
-
| sleep-routine-analyzer | Analyze sleep patterns and provide improvement recommendations |
|
|
315
|
-
| stress-relief-playbook | Generate personalized stress relief strategies and relaxation techniques |
|
|
316
|
-
| wellness-progress-reporter | Generate wellness progress reports with health metrics and trends |
|
|
317
|
-
| workout-cycle-planner | Plan workout cycles with periodization, exercises, and progression |
|
|
318
|
-
|
|
319
|
-
### Travel & Lifestyle (7)
|
|
320
|
-
| Skill | Description |
|
|
321
|
-
|-------|-------------|
|
|
322
|
-
| destination-briefing | Create travel destination briefings with local info, tips, and logistics |
|
|
323
|
-
| family-activity-curator | Curate family-friendly activities based on age, interests, and location |
|
|
324
|
-
| household-maintenance-mgr | Track and schedule household maintenance tasks and reminders |
|
|
325
|
-
| itinerary-architect | Design detailed travel itineraries with activities, timing, and logistics |
|
|
326
|
-
| packing-plan-pro | Create detailed packing plans for trips with weather-based recommendations |
|
|
327
|
-
| pet-care-scheduler | Schedule and track pet care activities including feeding, walks, and vet visits |
|
|
328
|
-
| travel-budget-balancer | Balance travel budgets across categories with optimization suggestions |
|
|
329
|
-
|
|
330
|
-
### Event Management (4)
|
|
331
|
-
| Skill | Description |
|
|
332
|
-
|-------|-------------|
|
|
333
|
-
| guest-communication-suite | Manage guest communications for events, hospitality, and venues |
|
|
334
|
-
| livestream-runofshow | Create run-of-show documents for livestream events with timing and cues |
|
|
335
|
-
| onsite-ops-checklist | Create operational checklists for on-site events and activities |
|
|
336
|
-
| seating-chart-maker | Create seating charts for events, classrooms, and venues |
|
|
278
|
+
Key files:
|
|
279
|
+
|
|
280
|
+
- **SKILL.md** -- the primary doc file, copied to agent skill directories on `--for` installs. Contains frontmatter (name, description) and usage instructions.
|
|
281
|
+
- **package.json** -- must have a `bin` entry for the skill to be runnable via `skills run`.
|
|
282
|
+
- **src/index.ts** -- exported in the auto-generated `.skills/index.ts` when installed.
|
|
337
283
|
|
|
338
284
|
## Using Installed Skills
|
|
339
285
|
|
|
340
|
-
After installing,
|
|
286
|
+
After installing, skills are available via the auto-generated index:
|
|
341
287
|
|
|
342
288
|
```typescript
|
|
343
|
-
import {
|
|
289
|
+
import { image, deep_research } from "./.skills";
|
|
344
290
|
```
|
|
345
291
|
|
|
346
|
-
|
|
347
|
-
- TypeScript source code
|
|
348
|
-
- CLI tool
|
|
349
|
-
- Programmatic API
|
|
292
|
+
Or import directly:
|
|
350
293
|
|
|
351
|
-
|
|
294
|
+
```typescript
|
|
295
|
+
import { generateImage } from "./.skills/skill-image/src/index.js";
|
|
296
|
+
```
|
|
352
297
|
|
|
353
|
-
|
|
298
|
+
## Creating a Custom Skill
|
|
299
|
+
|
|
300
|
+
1. Create the skill directory:
|
|
354
301
|
|
|
355
302
|
```bash
|
|
356
|
-
|
|
357
|
-
bun install @hasna/skill-deep-research
|
|
358
|
-
bun install @hasna/skill-generate-image
|
|
303
|
+
mkdir -p skills/skill-my-skill/src
|
|
359
304
|
```
|
|
360
305
|
|
|
361
|
-
|
|
306
|
+
2. Add `package.json`:
|
|
307
|
+
|
|
308
|
+
```json
|
|
309
|
+
{
|
|
310
|
+
"name": "skill-my-skill",
|
|
311
|
+
"version": "0.0.1",
|
|
312
|
+
"bin": { "my-skill": "./src/index.ts" },
|
|
313
|
+
"dependencies": {}
|
|
314
|
+
}
|
|
315
|
+
```
|
|
316
|
+
|
|
317
|
+
3. Add `SKILL.md` with frontmatter:
|
|
318
|
+
|
|
319
|
+
```markdown
|
|
320
|
+
---
|
|
321
|
+
name: my-skill
|
|
322
|
+
description: What this skill does
|
|
323
|
+
---
|
|
362
324
|
|
|
363
|
-
|
|
325
|
+
# My Skill
|
|
364
326
|
|
|
327
|
+
Usage instructions here.
|
|
365
328
|
```
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
|
|
329
|
+
|
|
330
|
+
4. Add `src/index.ts` with your logic.
|
|
331
|
+
|
|
332
|
+
5. Register in `src/lib/registry.ts`:
|
|
333
|
+
|
|
334
|
+
```typescript
|
|
335
|
+
{
|
|
336
|
+
name: "my-skill",
|
|
337
|
+
displayName: "My Skill",
|
|
338
|
+
description: "What this skill does",
|
|
339
|
+
category: "Development Tools",
|
|
340
|
+
tags: ["my", "skill"],
|
|
341
|
+
}
|
|
342
|
+
```
|
|
343
|
+
|
|
344
|
+
6. Run tests to validate:
|
|
345
|
+
|
|
346
|
+
```bash
|
|
347
|
+
bun test
|
|
376
348
|
```
|
|
377
349
|
|
|
378
350
|
## Development
|
|
@@ -381,22 +353,74 @@ skill-{name}/
|
|
|
381
353
|
# Install dependencies
|
|
382
354
|
bun install
|
|
383
355
|
|
|
384
|
-
# Run CLI in
|
|
356
|
+
# Run CLI in dev mode
|
|
385
357
|
bun run dev
|
|
386
358
|
|
|
387
|
-
# Build
|
|
359
|
+
# Build CLI, MCP server, and library
|
|
388
360
|
bun run build
|
|
389
361
|
|
|
390
362
|
# Type check
|
|
391
363
|
bun run typecheck
|
|
364
|
+
|
|
365
|
+
# Run all tests
|
|
366
|
+
bun test
|
|
367
|
+
|
|
368
|
+
# Build the dashboard
|
|
369
|
+
bun run dashboard:build
|
|
370
|
+
|
|
371
|
+
# Run dashboard dev server
|
|
372
|
+
bun run dashboard:dev
|
|
373
|
+
|
|
374
|
+
# Start HTTP server (with dashboard)
|
|
375
|
+
bun run server:dev
|
|
392
376
|
```
|
|
393
377
|
|
|
394
|
-
##
|
|
378
|
+
## Architecture
|
|
395
379
|
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
|
|
380
|
+
```
|
|
381
|
+
src/
|
|
382
|
+
├── cli/
|
|
383
|
+
│ ├── index.tsx # Commander.js CLI + Ink TUI
|
|
384
|
+
│ ├── cli.test.ts # CLI integration tests
|
|
385
|
+
│ └── components/
|
|
386
|
+
│ └── App.tsx # Interactive TUI (React/Ink)
|
|
387
|
+
├── mcp/
|
|
388
|
+
│ ├── index.ts # MCP server (stdio transport)
|
|
389
|
+
│ └── mcp.test.ts # MCP integration tests
|
|
390
|
+
├── server/
|
|
391
|
+
│ ├── serve.ts # Bun HTTP server + REST API
|
|
392
|
+
│ └── serve.test.ts # Server tests
|
|
393
|
+
├── lib/
|
|
394
|
+
│ ├── registry.ts # SKILLS array (202) + CATEGORIES (17)
|
|
395
|
+
│ ├── installer.ts # Install/remove to .skills/ and agent dirs
|
|
396
|
+
│ ├── skillinfo.ts # Docs, requirements, env vars, run
|
|
397
|
+
│ ├── utils.ts # normalizeSkillName()
|
|
398
|
+
│ ├── registry.test.ts # Registry tests
|
|
399
|
+
│ ├── installer.test.ts # Installer tests
|
|
400
|
+
│ ├── skillinfo.test.ts # Skill info tests
|
|
401
|
+
│ ├── skillinfo-run.test.ts # Skill run tests
|
|
402
|
+
│ ├── utils.test.ts # Utils tests
|
|
403
|
+
│ └── validation.test.ts # Structural validation (all 202 skills)
|
|
404
|
+
├── index.ts # Library re-exports
|
|
405
|
+
└── index.test.ts # Library export tests
|
|
406
|
+
|
|
407
|
+
dashboard/ # Vite + React 19 + Tailwind v4 + shadcn/ui
|
|
408
|
+
├── src/components/
|
|
409
|
+
│ ├── skills-table.tsx # Main skills table (TanStack Table)
|
|
410
|
+
│ ├── skill-detail-dialog.tsx# Skill detail dialog
|
|
411
|
+
│ ├── stats-cards.tsx # Summary cards
|
|
412
|
+
│ ├── theme-provider.tsx # Dark/light/system theme
|
|
413
|
+
│ ├── theme-toggle.tsx # Theme toggle button
|
|
414
|
+
│ └── ui/ # shadcn/ui primitives
|
|
415
|
+
└── package.json
|
|
416
|
+
|
|
417
|
+
skills/ # 202 self-contained skill directories
|
|
418
|
+
├── _common/ # Shared utilities
|
|
419
|
+
├── skill-image/
|
|
420
|
+
├── skill-deep-research/
|
|
421
|
+
├── ...
|
|
422
|
+
└── tsconfig.base.json # Shared TS config for skills
|
|
423
|
+
```
|
|
400
424
|
|
|
401
425
|
## License
|
|
402
426
|
|