terminal-jarvis 0.0.48 โ 0.0.50
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/README.md +23 -9
- package/bin/terminal-jarvis +0 -0
- package/lib/index.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -21,6 +21,8 @@
|
|
|
21
21
|
<!-- General -->
|
|
22
22
|
|
|
23
23
|
[](https://opensource.org/licenses/MIT)
|
|
24
|
+
[](https://github.com/Piebald-AI/awesome-gemini-cli)
|
|
25
|
+
[](https://www.buymeacoffee.com/brandoncalderonmorales)
|
|
24
26
|
|
|
25
27
|
</div>
|
|
26
28
|
|
|
@@ -170,17 +172,29 @@ auto_sync = true
|
|
|
170
172
|
|
|
171
173
|
## Contributing
|
|
172
174
|
|
|
173
|
-
We welcome contributions!
|
|
175
|
+
We welcome contributions! Please join our [Discord community](https://discord.gg/zNuyC5uG) first to discuss your ideas.
|
|
174
176
|
|
|
175
|
-
|
|
176
|
-
2. Create a feature branch (`git checkout -b feature/amazing-feature`)
|
|
177
|
-
3. Make your changes following the [architecture guide](docs/ARCHITECTURE.md)
|
|
178
|
-
4. Ensure tests pass (`cargo test`)
|
|
179
|
-
5. Commit your changes (`git commit -m 'Add amazing feature'`)
|
|
180
|
-
6. Push to the branch (`git push origin feature/amazing-feature`)
|
|
181
|
-
7. Open a Pull Request
|
|
177
|
+
**Quick Start:**
|
|
182
178
|
|
|
183
|
-
|
|
179
|
+
1. ๐ฌ Join the [Terminal Jarvis Discord](https://discord.gg/zNuyC5uG)
|
|
180
|
+
2. ๐ฃ๏ธ Discuss your contribution in `#features` or `#bugfix` channels
|
|
181
|
+
3. ๐ด Fork the repository
|
|
182
|
+
4. ๐ง Create a feature branch (`git checkout -b feature/amazing-feature`)
|
|
183
|
+
5. โ
Follow our [contribution guidelines](docs/CONTRIBUTIONS.md)
|
|
184
|
+
6. ๐งช Ensure tests pass (`cargo test`)
|
|
185
|
+
7. ๐ Use our PR template for submitting changes
|
|
186
|
+
|
|
187
|
+
**๐ Full Guide:** [docs/CONTRIBUTIONS.md](docs/CONTRIBUTIONS.md) - Complete contributor guide with coding standards, testing requirements, and development workflow.
|
|
188
|
+
|
|
189
|
+
**๐๏ธ Technical Details:** [docs/ARCHITECTURE.md](docs/ARCHITECTURE.md) - Architecture overview and development setup.
|
|
190
|
+
|
|
191
|
+
## Support the Project
|
|
192
|
+
|
|
193
|
+
If Terminal Jarvis has been helpful for your AI coding workflow, consider supporting development:
|
|
194
|
+
|
|
195
|
+
[](https://www.buymeacoffee.com/brandoncalderonmorales)
|
|
196
|
+
|
|
197
|
+
Your support helps maintain and improve Terminal Jarvis for the entire community! ๐
|
|
184
198
|
|
|
185
199
|
## License
|
|
186
200
|
|
package/bin/terminal-jarvis
CHANGED
|
Binary file
|
package/lib/index.js
CHANGED
|
@@ -129,7 +129,7 @@ async function main() {
|
|
|
129
129
|
}
|
|
130
130
|
}
|
|
131
131
|
function showFallbackMessage() {
|
|
132
|
-
console.log("๐ค Terminal Jarvis v0.0.
|
|
132
|
+
console.log("๐ค Terminal Jarvis v0.0.50");
|
|
133
133
|
console.log("");
|
|
134
134
|
console.log("โ Error: Could not find or execute the T.JARVIS binary.");
|
|
135
135
|
console.log("");
|
package/package.json
CHANGED