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
docs: Enhance README with comprehensive workflow examples and tool integrations
Expanded documentation to provide more detailed usage scenarios, demonstrate AI-powered development workflows, and showcase the versatility of the context generation tools. Added examples for bug fixing, code refactoring, custom prompt creation, and tool integration across different development tasks.
Copy file name to clipboardExpand all lines: README.md
+75-8Lines changed: 75 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
# Minimalistic AI Coding Assistant
2
2
3
-
A collection of lightweight Bash scripts to enhance your coding workflow with AI assistance.
3
+
A collection of lightweight Bash scripts to enhance your coding workflow with AI assistance. These tools integrate seamlessly with your terminal workflow, allowing you to leverage AI models without disrupting your development process.
4
4
5
5
## Overview
6
6
@@ -56,11 +56,59 @@ Generates git-related context to help LLMs create meaningful commit messages.
56
56
57
57
## Usage Workflows
58
58
59
-
### Scenario: Code Refactoring
59
+
### Unix-style Pipelines
60
60
61
-
1. Generate context from your code:
61
+
These tools are designed to work seamlessly in Unix pipelines, allowing you to create powerful workflows with minimal effort:
62
+
63
+
```bash
64
+
# Copy code context directly to clipboard (macOS)
65
+
./context --files="src/api/*.js"| pbcopy
66
+
67
+
# Generate and apply code changes directly from clipboard (macOS)
68
+
pbpaste | ./apply-md
69
+
70
+
# Auto-generate commit message using an LLM CLI tool
0 commit comments