You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"description": "Hand-crafted collection of advanced context engineering techniques and patterns with minimal token footprint focused on improving agent result quality.",
6
6
"owner": {
7
7
"name": "NeoLabHQ",
@@ -32,8 +32,8 @@
32
32
},
33
33
{
34
34
"name": "git",
35
-
"description": "Introduces commands for commit and PRs creation.",
36
-
"version": "1.0.3",
35
+
"description": "Introduces commands for commit and PRs creation, plus skills for git worktrees and notes.",
36
+
"version": "1.1.0",
37
37
"author": {
38
38
"name": "Vlad Goncharov",
39
39
"email": "vlad.goncharov@neolab.finance"
@@ -55,7 +55,7 @@
55
55
{
56
56
"name": "sadd",
57
57
"description": "Introduces skills for subagent-driven development, dispatches fresh subagent for each task with code review between tasks, enabling fast iteration with quality gates.",
58
-
"version": "1.1.0",
58
+
"version": "1.1.1",
59
59
"author": {
60
60
"name": "Vlad Goncharov",
61
61
"email": "vlad.goncharov@neolab.finance"
@@ -99,7 +99,7 @@
99
99
{
100
100
"name": "customaize-agent",
101
101
"description": "Commands and skills for writing and refining commands, hooks, skills for Claude Code, includes Anthropic Best Practices and Agent Persuasion Principles that can be useful for sub-agent workflows.",
Copy file name to clipboardExpand all lines: docs/plugins/git/README.md
+67Lines changed: 67 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -258,6 +258,73 @@ PR number or URL (optional - can work with current branch).
258
258
> /git:attach-review-to-pr 456
259
259
```
260
260
261
+
## Skills Overview
262
+
263
+
### worktrees - Parallel Branch Development
264
+
265
+
Use when working on multiple branches simultaneously, context switching without stashing, reviewing PRs while developing, testing in isolation, or comparing implementations across branches.
266
+
267
+
- Purpose - Provide git worktree commands and workflow patterns for parallel development
268
+
- Core Principle - One worktree per active branch; switch contexts by changing directories
269
+
270
+
**Key Concepts**
271
+
272
+
| Concept | Description |
273
+
|---------|-------------|
274
+
| Main worktree | Original working directory from `git clone` or `git init`|
275
+
| Linked worktree | Additional directories created with `git worktree add`|
276
+
| Shared `.git`| All worktrees share same Git object database (no duplication) |
277
+
| Branch lock | Each branch can only be checked out in ONE worktree at a time |
-**Feature + Hotfix in Parallel** - Create worktree for hotfix while feature work continues
291
+
-**PR Review While Working** - Create temporary worktree to review PRs without stashing
292
+
-**Compare Implementations** - Create worktrees for different versions to diff side-by-side
293
+
-**Long-Running Tasks** - Run tests in isolated worktree while continuing development
294
+
295
+
### notes - Commit Metadata Annotations
296
+
297
+
Use when adding metadata to commits without changing history, tracking review status, test results, code quality annotations, or supplementing commit messages post-hoc.
298
+
299
+
- Purpose - Attach non-invasive metadata to Git objects without modifying commit history
300
+
- Core Principle - Add information to commits after creation without rewriting history
Copy file name to clipboardExpand all lines: docs/reference/skills.md
+7Lines changed: 7 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -29,6 +29,13 @@ Continuous improvement methodology with multiple analysis techniques. [More info
29
29
30
30
-`kaizen` - Japanese continuous improvement philosophy with root cause analysis, Five Whys, PDCA cycles, and lean practices.
31
31
32
+
### Git
33
+
34
+
Streamlined Git operations with advanced workflow patterns. [More info](../plugins/git/README.md).
35
+
36
+
-`worktrees` - Use when working on multiple branches simultaneously, context switching without stashing, reviewing PRs while developing, testing in isolation, or comparing implementations across branches.
37
+
-`notes` - Use when adding metadata to commits without changing history, tracking review status, test results, code quality annotations, or supplementing commit messages post-hoc.
38
+
32
39
### Customaize Agent
33
40
34
41
Prompt engineering techniques and patterns for creating effective extensions. [More info](../plugins/customaize-agent/README.md).
Copy file name to clipboardExpand all lines: plugins/customaize-agent/.claude-plugin/plugin.json
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
{
2
2
"name": "customaize-agent",
3
-
"version": "1.3.0",
3
+
"version": "1.3.1",
4
4
"description": "Commands and skills for writing and refining commands, hooks, skills for Claude Code, includes Anthropic Best Practices and Agent Persuasion Principles that can be useful for sub-agent workflows.",
Copy file name to clipboardExpand all lines: plugins/git/README.md
+67Lines changed: 67 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -258,6 +258,73 @@ PR number or URL (optional - can work with current branch).
258
258
> /git:attach-review-to-pr 456
259
259
```
260
260
261
+
## Skills Overview
262
+
263
+
### worktrees - Parallel Branch Development
264
+
265
+
Use when working on multiple branches simultaneously, context switching without stashing, reviewing PRs while developing, testing in isolation, or comparing implementations across branches.
266
+
267
+
- Purpose - Provide git worktree commands and workflow patterns for parallel development
268
+
- Core Principle - One worktree per active branch; switch contexts by changing directories
269
+
270
+
**Key Concepts**
271
+
272
+
| Concept | Description |
273
+
|---------|-------------|
274
+
| Main worktree | Original working directory from `git clone` or `git init`|
275
+
| Linked worktree | Additional directories created with `git worktree add`|
276
+
| Shared `.git`| All worktrees share same Git object database (no duplication) |
277
+
| Branch lock | Each branch can only be checked out in ONE worktree at a time |
-**Feature + Hotfix in Parallel** - Create worktree for hotfix while feature work continues
291
+
-**PR Review While Working** - Create temporary worktree to review PRs without stashing
292
+
-**Compare Implementations** - Create worktrees for different versions to diff side-by-side
293
+
-**Long-Running Tasks** - Run tests in isolated worktree while continuing development
294
+
295
+
### notes - Commit Metadata Annotations
296
+
297
+
Use when adding metadata to commits without changing history, tracking review status, test results, code quality annotations, or supplementing commit messages post-hoc.
298
+
299
+
- Purpose - Attach non-invasive metadata to Git objects without modifying commit history
300
+
- Core Principle - Add information to commits after creation without rewriting history
0 commit comments