From 7a2be5a7e5e742d59bf9003aee0dfe685f0f5810 Mon Sep 17 00:00:00 2001 From: Zhongwei Li Date: Sun, 30 Nov 2025 08:57:18 +0800 Subject: [PATCH] Initial commit --- .claude-plugin/plugin.json | 12 ++++++++++ README.md | 3 +++ commands/run-issue.md | 13 +++++++++++ plugin.lock.json | 45 ++++++++++++++++++++++++++++++++++++++ 4 files changed, 73 insertions(+) create mode 100644 .claude-plugin/plugin.json create mode 100644 README.md create mode 100644 commands/run-issue.md create mode 100644 plugin.lock.json diff --git a/.claude-plugin/plugin.json b/.claude-plugin/plugin.json new file mode 100644 index 0000000..b7f36f9 --- /dev/null +++ b/.claude-plugin/plugin.json @@ -0,0 +1,12 @@ +{ + "name": "github", + "description": "GitHub integration plugin", + "version": "0.0.1", + "author": { + "name": "Kento Shirasawa", + "email": "shirasawa@novalumo.com" + }, + "commands": [ + "./commands" + ] +} \ No newline at end of file diff --git a/README.md b/README.md new file mode 100644 index 0000000..ef4a5db --- /dev/null +++ b/README.md @@ -0,0 +1,3 @@ +# github + +GitHub integration plugin diff --git a/commands/run-issue.md b/commands/run-issue.md new file mode 100644 index 0000000..1742194 --- /dev/null +++ b/commands/run-issue.md @@ -0,0 +1,13 @@ +# Execute a GitHub Issue task + +Review the GitHub Issue content and perform the task execution. + +Follow these steps to proceed with the task: + +1. **Update main branch**: Switch to the main branch with `git checkout main`, then update to the latest state with `git pull origin main`. +2. **Review Issue content**: Use the `gh issue view #$ARGUMENTS` command to check the details of the specified Issue. +3. **Create branch**: Based on the Issue content, create a new branch with appropriate naming. +4. **Break down tasks**: Break down the Issue content into tasks and clarify the necessary work. +5. **Execute work**: Make code modifications and additions based on the tasks. +6. **Commit and push**: While progressing with the work, commit at appropriate granularity and push. +7. **Create pull request**: Once the work is completed, use the `gh pr create` command to create a pull request. diff --git a/plugin.lock.json b/plugin.lock.json new file mode 100644 index 0000000..75e93aa --- /dev/null +++ b/plugin.lock.json @@ -0,0 +1,45 @@ +{ + "$schema": "internal://schemas/plugin.lock.v1.json", + "pluginId": "gh:siraken/claude-plugins:github", + "normalized": { + "repo": null, + "ref": "refs/tags/v20251128.0", + "commit": "ec7de898e4739a1228ff48b367d18b646c6066da", + "treeHash": "81d16c2bd9c0d9de157223015192e933a0f88f7c3e9f3dfe610b18a66447673d", + "generatedAt": "2025-11-28T10:28:21.549224Z", + "toolVersion": "publish_plugins.py@0.2.0" + }, + "origin": { + "remote": "git@github.com:zhongweili/42plugin-data.git", + "branch": "master", + "commit": "aa1497ed0949fd50e99e70d6324a29c5b34f9390", + "repoRoot": "/Users/zhongweili/projects/openmind/42plugin-data" + }, + "manifest": { + "name": "github", + "description": "GitHub integration plugin", + "version": "0.0.1" + }, + "content": { + "files": [ + { + "path": "README.md", + "sha256": "6843205c6064c4434ea989f425d0673c85179bde71570b147a5598d052ca88e9" + }, + { + "path": ".claude-plugin/plugin.json", + "sha256": "19d273b144e4c25bef3bfccca6b137da65cc6d24a2533b8ea0447612a460d6b7" + }, + { + "path": "commands/run-issue.md", + "sha256": "2e1cf11dae957a13458abcc200c3b1691a9f9c15b1f1cfdc24b60dc0ac8d798d" + } + ], + "dirSha256": "81d16c2bd9c0d9de157223015192e933a0f88f7c3e9f3dfe610b18a66447673d" + }, + "security": { + "scannedAt": null, + "scannerVersion": null, + "flags": [] + } +} \ No newline at end of file