From afee99d41300686bac2d85b1d7059d50fe5e40d4 Mon Sep 17 00:00:00 2001 From: Mortdecai Date: Wed, 1 Apr 2026 17:43:04 -0400 Subject: [PATCH] chore: scaffold plugin with manifest and directory structure --- .claude-plugin/plugin.json | 15 +++++++++++++++ .gitignore | 3 +++ 2 files changed, 18 insertions(+) create mode 100644 .claude-plugin/plugin.json create mode 100644 .gitignore diff --git a/.claude-plugin/plugin.json b/.claude-plugin/plugin.json new file mode 100644 index 0000000..562f8ea --- /dev/null +++ b/.claude-plugin/plugin.json @@ -0,0 +1,15 @@ +{ + "name": "gitea-connector", + "version": "1.0.0", + "description": "Connect Claude Code to Seth's Gitea instance (git.sethpc.xyz) — guided setup, CLI, commit conventions, and a gentle nudge to push.", + "author": { + "name": "Seth", + "url": "https://git.sethpc.xyz" + }, + "homepage": "https://git.sethpc.xyz/Seth/gitea-connector", + "repository": "https://git.sethpc.xyz/Seth/gitea-connector", + "license": "MIT", + "commands": ["./commands"], + "agents": ["./agents"], + "hooks": "./hooks/hooks.json" +} diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..b5c8ae0 --- /dev/null +++ b/.gitignore @@ -0,0 +1,3 @@ +.backup/ +*.swp +*.swo