@riflo/ryte 1.0.0 → 1.0.1

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@riflo/ryte",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "AI Git Workflow Assistant - Generate semantic commits and PRs",
5
5
  "main": "src/index.js",
6
6
  "bin": {
@@ -1,21 +0,0 @@
1
- ## Description
2
- Please include a summary of the change and which issue is fixed. Please also include relevant motivation and context.
3
-
4
- Fixes # (issue)
5
-
6
- ## Type of Change
7
- - [ ] Bug fix (non-breaking change which fixes an issue)
8
- - [ ] New feature (non-breaking change which adds functionality)
9
- - [ ] Breaking change (fix or feature that would cause existing functionality to not work as expected)
10
- - [ ] Documentation update
11
-
12
- ## How Has This Been Tested?
13
- Please describe the tests that you ran to verify your changes.
14
-
15
- ## Checklist:
16
- - [ ] My code follows the style guidelines of this project
17
- - [ ] I have performed a self-review of my own code
18
- - [ ] I have commented my code, particularly in hard-to-understand areas
19
- - [ ] I have made corresponding changes to the documentation
20
- - [ ] My changes generate no new warnings
21
- - [ ] I have committed using `pact c`
package/install-pact.sh DELETED
@@ -1,12 +0,0 @@
1
- #!/bin/bash
2
-
3
- # Simple install script for pact CLI
4
- echo "Installing PACT CLI globally..."
5
- npm install -g .
6
-
7
- echo ""
8
- echo "Adding aliases to ~/.bashrc or ~/.zshrc is recommended:"
9
- echo "alias c='pact c'"
10
- echo "alias pr='pact pr'"
11
- echo ""
12
- echo "Don't forget to set OPENAI_API_KEY in your environment!"