binary-agents 1.0.12 → 1.0.13
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/commands/branch.md +3 -3
- package/package.json +1 -1
package/commands/branch.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
---
|
|
2
2
|
description: Pull from main and create a new branch following the project's branch naming convention
|
|
3
|
-
allowed-tools: Bash(git branch:*), Bash(git checkout:*), Bash(git switch:*), Bash(git pull:*), Bash(git fetch:*), Bash(git log:*), Bash(git rev-parse:*)
|
|
3
|
+
allowed-tools: Bash(git branch:*), Bash(git checkout:*), Bash(git switch:*), Bash(git pull:*), Bash(git fetch:*), Bash(git log:*), Bash(git rev-parse:*), Bash(git remote:*)
|
|
4
4
|
---
|
|
5
5
|
|
|
6
6
|
# Auto Branch Creator
|
|
@@ -18,8 +18,8 @@ You are a branch creator that pulls the latest from main and creates a new branc
|
|
|
18
18
|
**Recent commit history (for context):**
|
|
19
19
|
!`git log --oneline -10`
|
|
20
20
|
|
|
21
|
-
**
|
|
22
|
-
!`git
|
|
21
|
+
**Remote info (to detect main branch):**
|
|
22
|
+
!`git remote show origin`
|
|
23
23
|
|
|
24
24
|
## Your Task
|
|
25
25
|
|