forked from jeremylongshore/claude-code-plugins-plus-skills
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsources.yaml
More file actions
135 lines (120 loc) · 3.5 KB
/
sources.yaml
File metadata and controls
135 lines (120 loc) · 3.5 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
# External Plugin Sources
#
# Plugins listed here are synced daily from their source repositories.
# This allows plugin authors to maintain their plugins in their own repos
# while we automatically mirror updates to our marketplace.
#
# Sync runs: Daily at midnight UTC via GitHub Actions
# Workflow: .github/workflows/sync-external.yml
# Script: scripts/sync-external.mjs
sources:
# ============================================================
# n-skills Marketplace (Numman Ali)
# https://github.com/numman-ali/n-skills
# ============================================================
- name: gastown
description: Multi-agent orchestrator for Claude Code
repo: numman-ali/n-skills
source_path: skills/tools/gastown
target_path: plugins/community/gastown
author:
name: Numman Ali
github: numman-ali
email: numman.ali@gmail.com
license: Apache-2.0
category: community
verified: true
# Files to sync (relative to source_path)
include:
- "SKILL.md"
- "README.md"
- "references/**"
# Files to exclude
exclude:
- "node_modules/**"
- ".git/**"
- "*.log"
- name: zai-cli
description: Z.AI vision, search, reader, and GitHub exploration
repo: numman-ali/n-skills
source_path: skills/tools/zai-cli
target_path: plugins/community/zai-cli
author:
name: Numman Ali
github: numman-ali
email: numman.ali@gmail.com
license: Apache-2.0
category: community
verified: true
include:
- "SKILL.md"
- "README.md"
- "references/**"
exclude:
- "node_modules/**"
- ".git/**"
- "*.log"
# ============================================================
# Sugar (Steven Leggett / Robotic Force)
# https://github.com/roboticforce/sugar
# ============================================================
- name: sugar
description: Autonomous AI Development Platform
repo: roboticforce/sugar
source_path: .claude-plugin
target_path: plugins/devops/sugar
author:
name: Steven Leggett
github: cdnsteve
email: contact@roboticforce.io
license: MIT
category: devops
verified: true
include:
- "plugin.json"
- "README.md"
- "PLUGIN_OVERVIEW.md"
- "commands/**"
- "agents/**"
- "hooks/**"
- "mcp-server/**"
exclude:
- "node_modules/**"
- ".git/**"
- "*.log"
# ============================================================
# Add more external sources below
# ============================================================
# Example: Sawyer Hood's dev-browser
# - name: dev-browser
# description: Browser automation for Claude Code
# repo: SawyerHood/dev-browser
# source_path: skills/dev-browser
# target_path: plugins/community/dev-browser
# author:
# name: Sawyer Hood
# github: SawyerHood
# license: MIT
# category: community
# verified: true
# Sync configuration
config:
# Branch to sync from (default: main)
default_branch: main
# Create PR instead of direct commit
create_pr: true
# PR labels
pr_labels:
- automated
- sync
- external-plugins
# Commit message template
commit_message: "chore(sync): update external plugins from upstream"
# PR title template
pr_title: "🔄 Sync external plugins"
# PR body template (supports {sources} placeholder)
pr_body: |
Automated sync from external plugin sources.
## Sources Updated
{sources}
See `sources.yaml` for configured sources.