gut-cli 0.1.21 → 0.1.22

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/.gut/branch.md CHANGED
@@ -9,7 +9,3 @@ Generate a clean, descriptive branch name based on the description. If a branch
9
9
  - Use kebab-case for description
10
10
  - Keep it short (under 50 chars total)
11
11
  - No special characters except hyphens and slashes
12
-
13
- ## Output
14
-
15
- Respond with ONLY the branch name, nothing else.
package/.gut/changelog.md CHANGED
@@ -16,11 +16,3 @@ Use Keep a Changelog format (https://keepachangelog.com/):
16
16
  - Breaking changes (highlight these)
17
17
  - Group related changes together
18
18
  - Write for end users, not developers (unless it's a library)
19
-
20
- ## Output
21
-
22
- Respond with a JSON object containing:
23
- - version: Version string if detected (optional)
24
- - date: Release date in YYYY-MM-DD format
25
- - sections: Array of { type, items[] }
26
- - summary: Brief summary of this release (optional)
package/.gut/checkout.md CHANGED
@@ -15,7 +15,3 @@ Analyze the git diff and generate a clean, descriptive branch name that captures
15
15
  - The main purpose of the changes
16
16
  - Whether it's a feature, fix, refactor, etc.
17
17
  - Key files or functionality being modified
18
-
19
- ## Output
20
-
21
- Respond with ONLY the branch name, nothing else.
@@ -10,13 +10,4 @@ Analyze the file content and explain what it does, its purpose, and its role in
10
10
  - Dependencies and what it interacts with
11
11
  - Any important patterns or architecture decisions
12
12
 
13
- ## Output
14
-
15
13
  Explain in a way that helps someone quickly understand this file's purpose and how it fits into the larger codebase.
16
-
17
- Respond with a JSON object containing:
18
- - summary: One-line summary
19
- - purpose: The purpose and role of this code
20
- - changes: Array of { file, description }
21
- - impact: What impact or role this has in the project
22
- - notes: Important considerations or caveats (optional)
package/.gut/explain.md CHANGED
@@ -9,13 +9,4 @@ Analyze the changes based on the target type (commit, PR, file changes, etc.) an
9
9
  - The broader context and purpose
10
10
  - Any important implications or side effects
11
11
 
12
- ## Output
13
-
14
12
  Explain in a way that helps someone understand not just the "what" but the "why" behind these changes.
15
-
16
- Respond with a JSON object containing:
17
- - summary: One-line summary
18
- - purpose: The purpose and role of this code
19
- - changes: Array of { file, description }
20
- - impact: What impact or role this has in the project
21
- - notes: Important considerations or caveats (optional)
package/.gut/find.md CHANGED
@@ -11,9 +11,3 @@ Find the commits that best match the user's query. Consider:
11
11
 
12
12
  Return commits ordered by relevance (most relevant first).
13
13
  Only include commits that actually match the query - if none match well, return an empty array.
14
-
15
- ## Output
16
-
17
- Respond with a JSON object containing:
18
- - matches: Array of { hash, reason }
19
- - summary: Brief summary of the search results (optional)
package/.gut/gitignore.md CHANGED
@@ -14,7 +14,3 @@ Analyze the project structure and configuration files to generate an appropriate
14
14
  - Do NOT ignore files that should be tracked (source code, configs, etc.)
15
15
  - Keep the file organized with comments for each section
16
16
  - If an existing .gitignore is provided, preserve project-specific patterns from it
17
-
18
- ## Output
19
-
20
- Respond with ONLY the .gitignore content, nothing else. Include section comments for clarity.
package/.gut/merge.md CHANGED
@@ -10,10 +10,3 @@ Analyze the conflicted file content and provide a resolution.
10
10
  - Preserve all necessary functionality
11
11
  - The resolved content should be valid, working code
12
12
  - Do NOT include conflict markers (<<<<<<, =======, >>>>>>)
13
-
14
- ## Output
15
-
16
- Respond with a JSON object containing:
17
- - resolvedContent: The resolved file content
18
- - explanation: Brief explanation of how the conflict was resolved
19
- - strategy: "ours" | "theirs" | "combined" | "rewritten"
package/.gut/stash.md CHANGED
@@ -8,7 +8,3 @@ Generate a short, descriptive stash name based on the diff.
8
8
  - Keep it under 50 characters total
9
9
  - Be specific about what the changes do
10
10
  - Use present tense
11
-
12
- ## Output
13
-
14
- Respond with ONLY the stash name, nothing else.
package/.gut/summary.md CHANGED
@@ -9,12 +9,3 @@ Generate a clear, professional work summary based on the git activity.
9
9
  - Highlight important achievements
10
10
  - Use clear, non-technical language where possible
11
11
  - Make it suitable for sharing with team or manager
12
-
13
- ## Output
14
-
15
- Respond with a JSON object containing:
16
- - title: One-line title for the summary
17
- - overview: Brief overview of what was accomplished
18
- - highlights: Array of key accomplishments
19
- - details: Array of { category, items[] }
20
- - stats: { commits, filesChanged?, additions?, deletions? } (optional)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gut-cli",
3
- "version": "0.1.21",
3
+ "version": "0.1.22",
4
4
  "description": "Git Utility Tool - AI-powered git commands for smarter workflows",
5
5
  "type": "module",
6
6
  "main": "./dist/lib/index.js",