-
Notifications
You must be signed in to change notification settings - Fork 99
Expand file tree
/
Copy pathsources.yaml
More file actions
151 lines (138 loc) · 7.77 KB
/
sources.yaml
File metadata and controls
151 lines (138 loc) · 7.77 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
# n-skills External Sources
# ========================
# This manifest defines external skills synced into the n-skills marketplace.
# The GitHub Actions workflow reads this file and copies skill folders from
# upstream repositories on a daily schedule.
#
# To add a skill: Submit a PR adding an entry here. See CONTRIBUTING.md.
version: 1
skills:
# ─────────────────────────────────────────────────────────────────────────
# zai-cli - Native skill (not synced externally)
# ─────────────────────────────────────────────────────────────────────────
# Note: zai-cli is maintained directly in this repo under skills/tools/zai-cli
# It's listed here for completeness but has no source.repo (native skill)
- name: zai-cli
description: Z.AI vision, search, reader, and GitHub exploration via MCP
native: true # Maintained directly in this repo
target:
category: tools
path: skills/tools/zai-cli
author:
name: Numman Ali
github: numman-ali
twitter: nummanali
license: Apache-2.0
homepage: https://github.com/numman-ali/zai-cli
# ─────────────────────────────────────────────────────────────────────────
# dev-browser - Browser automation (synced from SawyerHood/dev-browser)
# ─────────────────────────────────────────────────────────────────────────
- name: dev-browser
description: Browser automation with persistent page state. Use when users ask to navigate websites, fill forms, take screenshots, extract web data, test web apps, or automate browser workflows.
source:
repo: SawyerHood/dev-browser
path: skills/dev-browser # Path within source repo
ref: main # Branch, tag, or commit SHA
target:
category: automation
path: skills/automation/dev-browser
author:
name: Sawyer Hood
github: SawyerHood
license: MIT
homepage: https://github.com/SawyerHood/dev-browser
verified: true # Manually reviewed and approved
# Sync configuration
sync:
# Files/folders to copy (relative to source.path)
include:
- SKILL.md
- references/
- scripts/
- src/
- server.sh
- package.json
- tsconfig.json
- vitest.config.ts
# Files to exclude (glob patterns)
exclude:
- node_modules/
- "*.lock"
- bun.lock
- tmp/
# ─────────────────────────────────────────────────────────────────────────
# gastown - Multi-agent orchestrator (native skill)
# ─────────────────────────────────────────────────────────────────────────
- name: gastown
description: Multi-agent orchestrator for Claude Code. Use when user mentions gastown, gas town, gt commands, convoys, polecats, rigs, slinging work, multi-agent coordination, beads, hooks, the witness, the mayor, the refinery, or wants to run multiple AI agents on projects simultaneously.
native: true
target:
category: tools
path: skills/tools/gastown
author:
name: Numman Ali
github: numman-ali
twitter: nummanali
license: Apache-2.0
homepage: https://github.com/steveyegge/gastown
# ─────────────────────────────────────────────────────────────────────────
# orchestration - Multi-agent workflow orchestration (native skill)
# ─────────────────────────────────────────────────────────────────────────
- name: orchestration
description: Multi-agent orchestration for complex tasks using cc-mirror tasks and TodoWrite. Use when tasks require parallel work, multiple agents, sophisticated coordination, or decomposition into parallel subtasks.
native: true
target:
category: workflow
path: skills/workflow/orchestration
author:
name: Numman Ali
github: numman-ali
twitter: nummanali
license: Apache-2.0
homepage: https://github.com/numman-ali/n-skills
# ─────────────────────────────────────────────────────────────────────────
# open-source-maintainer - GitHub repo maintenance (native skill)
# ─────────────────────────────────────────────────────────────────────────
- name: open-source-maintainer
description: End-to-end GitHub repository maintenance for open-source projects. Use when asked to triage issues, review PRs, analyze contributor activity, generate maintenance reports, or maintain a repository. Triggers include "triage", "maintain", "review PRs", "analyze issues", "repo maintenance", "what needs attention", "open source maintenance", or any request to understand and act on GitHub issues/PRs.
native: true
target:
category: workflow
path: skills/workflow/open-source-maintainer
author:
name: Numman Ali
github: numman-ali
twitter: nummanali
license: Apache-2.0
homepage: https://github.com/numman-ali/n-skills
# ─────────────────────────────────────────────────────────────────────────────
# Schema Reference
# ─────────────────────────────────────────────────────────────────────────────
#
# skills[]:
# name: Required. Unique skill identifier (lowercase, hyphens ok)
# description: Required. One-line description for marketplace listings
#
# native: Optional. Set true if skill is maintained directly in n-skills
#
# source: Required for external skills
# repo: GitHub owner/repo (e.g., "SawyerHood/dev-browser")
# path: Path to skill folder within repo
# ref: Branch, tag, or commit SHA (default: main)
#
# target: Required
# category: One of: tools, development, productivity, automation, data, documentation
# path: Target path in n-skills repo
#
# author: Required
# name: Display name
# github: GitHub username
# twitter: Optional Twitter handle
#
# license: Required. SPDX identifier (MIT, Apache-2.0, etc.)
# homepage: Required. Link to project homepage or repo
# verified: Optional. Set true after manual review (default: false)
#
# sync: Optional. Fine-grained sync control
# include: List of files/folders to copy
# exclude: Glob patterns to skip