@riligar/agents-kit 1.0.0 → 1.2.0
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/.agent/rules/conventional-commits.md +18 -0
- package/README.md +5 -0
- package/bin/cli.js +1 -0
- package/package.json +7 -22
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
# Conventional Commits Standards
|
|
2
|
+
|
|
3
|
+
All commits in this repository must follow the Conventional Commits specification. This ensures that our automated release pipeline can correctly calculate version bumps and generate changelogs.
|
|
4
|
+
|
|
5
|
+
## Format
|
|
6
|
+
|
|
7
|
+
`<type>(<scope>): <description>`
|
|
8
|
+
|
|
9
|
+
## Types
|
|
10
|
+
|
|
11
|
+
- `feat`: A new feature (triggers a MINOR version bump)
|
|
12
|
+
- `fix`: A bug fix (triggers a PATCH version bump)
|
|
13
|
+
- `docs`: Documentation only changes
|
|
14
|
+
- `style`: Changes that do not affect the meaning of the code
|
|
15
|
+
- `refactor`: A code change that neither fixes a bug nor adds a feature
|
|
16
|
+
- `perf`: A code change that improves performance
|
|
17
|
+
- `test`: Adding missing tests or correcting existing tests
|
|
18
|
+
- `chore`: Changes to the build process or auxiliary tools and libraries
|
package/README.md
CHANGED
|
@@ -1,5 +1,10 @@
|
|
|
1
1
|
# @riligar/agents-kit
|
|
2
2
|
|
|
3
|
+
<p align="center">
|
|
4
|
+
<img src="https://img.shields.io/npm/v/@anthropic-ai/claude-code?label=Claude%20Code&logo=anthropic" alt="Claude Code">
|
|
5
|
+
<img src="https://img.shields.io/badge/Gemini_CLI-v1.2.0-blue?logo=google-gemini&logoColor=white" alt="Gemini CLI">
|
|
6
|
+
</p>
|
|
7
|
+
|
|
3
8
|
**RiLiGar Agents Kit** - Curated collection of AI Agent templates, skills, and rules designed to standardize and supercharge your AI-driven development workflows.
|
|
4
9
|
|
|
5
10
|
## Why it exists
|
package/bin/cli.js
CHANGED
package/package.json
CHANGED
|
@@ -1,14 +1,18 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@riligar/agents-kit",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.2.0",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
7
|
-
"description": "RiLiGar Agents Kit - AI Agent templates
|
|
7
|
+
"description": "RiLiGar Agents Kit - Curated collection of AI Agent templates, skills, and rules designed to standardize and supercharge your AI-driven development workflows.",
|
|
8
8
|
"main": "bin/cli.js",
|
|
9
9
|
"bin": {
|
|
10
10
|
"agents-kit": "bin/cli.js"
|
|
11
11
|
},
|
|
12
|
+
"repository": {
|
|
13
|
+
"type": "git",
|
|
14
|
+
"url": "https://github.com/riligar/agent-kit.git"
|
|
15
|
+
},
|
|
12
16
|
"files": [
|
|
13
17
|
"bin",
|
|
14
18
|
".agent"
|
|
@@ -16,26 +20,6 @@
|
|
|
16
20
|
"scripts": {
|
|
17
21
|
"release": "semantic-release"
|
|
18
22
|
},
|
|
19
|
-
"release": {
|
|
20
|
-
"branches": [
|
|
21
|
-
"prod"
|
|
22
|
-
],
|
|
23
|
-
"plugins": [
|
|
24
|
-
"@semantic-release/commit-analyzer",
|
|
25
|
-
"@semantic-release/release-notes-generator",
|
|
26
|
-
"@semantic-release/npm",
|
|
27
|
-
"@semantic-release/github",
|
|
28
|
-
[
|
|
29
|
-
"@semantic-release/git",
|
|
30
|
-
{
|
|
31
|
-
"assets": [
|
|
32
|
-
"package.json"
|
|
33
|
-
],
|
|
34
|
-
"message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
|
|
35
|
-
}
|
|
36
|
-
]
|
|
37
|
-
]
|
|
38
|
-
},
|
|
39
23
|
"keywords": [
|
|
40
24
|
"openai",
|
|
41
25
|
"google",
|
|
@@ -57,6 +41,7 @@
|
|
|
57
41
|
"@semantic-release/github": "^12.0.2",
|
|
58
42
|
"@semantic-release/npm": "^13.1.3",
|
|
59
43
|
"@semantic-release/release-notes-generator": "^14.1.0",
|
|
44
|
+
"conventional-changelog-conventionalcommits": "^8.0.0",
|
|
60
45
|
"semantic-release": "^25.0.2"
|
|
61
46
|
}
|
|
62
47
|
}
|