Replace the skills-only SSoT (skills/<name>/SKILL.md) with plugins/<name>/, where a plugin can bundle skills, MCP servers, lifecycle hooks, rules, commands, and agents. scripts/generate_plugins.py now discovers plugins from one or more layered --source roots and emits real per-target trees (dist/claude-code/** + .claude-plugin/marketplace.json, dist/agy/**), translating hooks.json/mcp.json between Claude Code's and agy's actual schemas instead of only fanning out flat skill lists. Adds a private-overlay build path (--source/--private-repo/--out/ --install-local) so a second, non-public repo (PII, tokens, personal-only plugins) can extend or override the public plugin set without either repo touching the other's history — private builds default to a gitignored dist-private/ and never land in tracked output. Drops install.sh and descriptions.json: both only ever covered skills and pre-date the native plugin marketplace; both tools now install the plugin marketplace the documented way (Claude Code's /plugin marketplace add, agy's plugins.json entries). CI path filters move to plugins/**, and the workflow gains workflow_dispatch for a manual re-trigger. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_014YVWWAnvR5TDQzmfY3RXG9
128 lines
4.6 KiB
Plaintext
128 lines
4.6 KiB
Plaintext
# id: gi-patterns-54143085ec229f3cf907a5aa2a8fcade
|
|
# Created by https://www.toptal.com/developers/gitignore/api/linux
|
|
# Edit at https://www.toptal.com/developers/gitignore?templates=linux
|
|
|
|
### Linux ###
|
|
*~
|
|
|
|
# temporary files which can be created if a process still has a handle open of a deleted file
|
|
.fuse_hidden*
|
|
|
|
# KDE directory preferences
|
|
.directory
|
|
|
|
# Linux trash folder which might appear on any partition or disk
|
|
.Trash-*
|
|
|
|
# .nfs files are created when an open file is removed but is still being accessed
|
|
.nfs*
|
|
|
|
# End of https://www.toptal.com/developers/gitignore/api/linux
|
|
|
|
# id: gitig-boilerplate-92f3a89d2c63f6a381be8bebd1862de5
|
|
# ╭──────────────────────────────────────────────────────────╮
|
|
# │ GitIgnore Boilerplate Template │
|
|
# ╰──────────────────────────────────────────────────────────╯
|
|
#
|
|
# ──────────────────── OS-Generated Files ────────────────────
|
|
# automatic backup files created by some editors (e.g., Vim, Emacs)
|
|
*~
|
|
|
|
# temporary files created if a process still has a handle to a deleted file
|
|
.fuse_hidden*
|
|
|
|
# KDE directory preferences
|
|
.directory
|
|
|
|
# MacOS junk
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Linux trash folder which might appear on any partition or disk
|
|
.Trash-*
|
|
|
|
# files created when an open file is removed but is still being accessed
|
|
.nfs*
|
|
|
|
# ─────────────────── Debug/Temporary/Testing ────────────────
|
|
# Matches OLD / .OLD
|
|
[Oo][Ll][Dd]/
|
|
.[Oo][Ll][Dd]/
|
|
|
|
# Matches DISABLE / .DISABLE
|
|
[Dd][Ii][Ss][Aa][Bb][Ll][Ee]/
|
|
.[Dd][Ii][Ss][Aa][Bb][Ll][Ee]/
|
|
|
|
# Matches DISABLED / .DISABLED
|
|
[Dd][Ii][Ss][Aa][Bb][Ll][Ee][Dd]/
|
|
.[Dd][Ii][Ss][Aa][Bb][Ll][Ee][Dd]/
|
|
|
|
# Matches DEBUG / .DEBUG
|
|
[Dd][Ee][Bb][Uu][Gg]/
|
|
.[Dd][Ee][Bb][Uu][Gg]/
|
|
|
|
# Matches TMP / .TMP
|
|
[Tt][Mm][Pp]/
|
|
.[Tt][Mm][Pp]/
|
|
|
|
# Matches TEMP / .TEMP
|
|
[Tt][Ee][Mm][Pp]/
|
|
.[Tt][Ee][Mm][Pp]/
|
|
|
|
# Matches TEMPORARY / .TEMPORARY
|
|
[Tt][Ee][Mm][Pp][Oo][Rr][Aa][Rr][Yy]/
|
|
.[Tt][Ee][Mm][Pp][Oo][Rr][Aa][Rr][Yy]/
|
|
|
|
# Matches TESTING / .TESTING
|
|
[Tt][Ee][Ss][Tt][Ii][Nn][Gg]/
|
|
.[Tt][Ee][Ss][Tt][Ii][Nn][Gg]/
|
|
|
|
# ─────────────────── AI Sessions and Rules ──────────────────
|
|
# Matches CLAUDE.md, .claud*, etc.
|
|
[Cc][Ll][Aa][Uu][Dd][Ee].[Mm][Dd]
|
|
.[Cc][Ll][Aa][Uu][Dd]*
|
|
|
|
# Claude Code plugin marketplace manifest (generated, must stay tracked)
|
|
!.claude-plugin/
|
|
!.claude-plugin/**
|
|
|
|
# Matches GEMINI.md, .gemin*, etc.
|
|
[Gg][Ee][Mm][Ii][Nn][Ii].[Mm][Dd]
|
|
.[Gg][Ee][Mm][Ii][Nn]*
|
|
|
|
# Matches ANTIGRAVITY.md, .antigrav*, etc.
|
|
[Aa][nN][Tt][Ii][Gg][Rr][Aa][Vv][Ii][Tt][Yy].[Mm][Dd]
|
|
.[Aa][Nn][Tt][Ii][Gg][Rr][Aa][Vv]*
|
|
|
|
# Matches AGENTS.md, .remember, etc.
|
|
[Aa][Gg][Ee][Nn][Tt][Ss].[Mm][Dd]
|
|
.[Rr][Ee][Mm][Ee][Mm][Bb][Ee][Rr]
|
|
|
|
# ──────────────────── Planning Artifacts ───────────────────
|
|
# Catalog files generated by pre-implementation analysis passes
|
|
.superpowers
|
|
docs/superpowers
|
|
docs/specs
|
|
|
|
# ──────────────────────────────────────────────────────────────
|
|
|
|
# ──────────────── Added by agents-init ──────────────────
|
|
# agents-init --agents
|
|
AGENTS/
|
|
# ────────────────────────────────────────────────────────
|
|
|
|
# ──────────────── Added by agents-init ──────────────────
|
|
# agents-init --plugins
|
|
docs/plans
|
|
docs/devlogs
|
|
# ────────────────────────────────────────────────────────
|
|
|
|
# ─────────────────── Private Overlay Builds ─────────────────
|
|
# Output of `generate_plugins.py` when layering a private/PII-bearing
|
|
# source on top of the public plugins/ tree. Never commit this.
|
|
dist-private/
|
|
|
|
# ─────────────────────────── Python ──────────────────────────
|
|
__pycache__/
|
|
*.pyc
|