@rexeus/agentic 0.3.1 → 0.3.2
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 +11 -4
- package/opencode/guardrails.mjs +3 -3
- package/package.json +9 -15
package/README.md
CHANGED
|
@@ -20,13 +20,11 @@ Built for TypeScript projects. Should work with other languages too.
|
|
|
20
20
|
### OpenCode (recommended)
|
|
21
21
|
|
|
22
22
|
```bash
|
|
23
|
-
npx skills add rexeus/agentic -g --all -y
|
|
24
23
|
npx @rexeus/agentic install opencode
|
|
25
24
|
```
|
|
26
25
|
|
|
27
|
-
This installs the Agentic plugin,
|
|
28
|
-
|
|
29
|
-
Restart OpenCode, switch to the visible `lead` agent, then run:
|
|
26
|
+
One command. This installs the Agentic plugin, agents, commands, and skills
|
|
27
|
+
globally. Restart OpenCode, switch to the visible `lead` agent, then run:
|
|
30
28
|
|
|
31
29
|
```
|
|
32
30
|
/agentic-plan Plan a feature
|
|
@@ -153,6 +151,15 @@ decisions without cluttering your workflow.
|
|
|
153
151
|
| `git-conventions` | Conventional Commits, branch naming, PR descriptions |
|
|
154
152
|
| `setup` | Getting started with Agentic, workflow, and agent overview |
|
|
155
153
|
|
|
154
|
+
Agentic is compatible with the [`skills` CLI](https://github.com/vercel-labs/skills).
|
|
155
|
+
You can use it to update skills via `npx skills update` or install additional
|
|
156
|
+
third-party skills alongside Agentic. To add Agentic skills through the skills
|
|
157
|
+
CLI instead of the built-in installer:
|
|
158
|
+
|
|
159
|
+
```bash
|
|
160
|
+
npx skills add rexeus/agentic -g --all -y
|
|
161
|
+
```
|
|
162
|
+
|
|
156
163
|
## Configuration
|
|
157
164
|
|
|
158
165
|
Agentic works out of the box with zero configuration. But you can customize
|
package/opencode/guardrails.mjs
CHANGED
|
@@ -57,9 +57,9 @@ const extractCommitMessage = (command) => {
|
|
|
57
57
|
return "";
|
|
58
58
|
}
|
|
59
59
|
|
|
60
|
-
const heredocMatch = command.match(/cat
|
|
61
|
-
if (heredocMatch && heredocMatch[
|
|
62
|
-
return heredocMatch[
|
|
60
|
+
const heredocMatch = command.match(/cat <<\s*(["']?)EOF\1\s*\n([\s\S]*?)\nEOF\n?/);
|
|
61
|
+
if (heredocMatch && heredocMatch[2]) {
|
|
62
|
+
return heredocMatch[2].trim();
|
|
63
63
|
}
|
|
64
64
|
|
|
65
65
|
const quotedMatch = command.match(/-[a-z]*m[\t ]*["']([^"']+)["']/);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rexeus/agentic",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.2",
|
|
4
4
|
"description": "Multi-agent development toolkit for Claude Code and OpenCode. Specialized agents, conventions, review workflows, and quality guardrails for TypeScript and JavaScript projects.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"agentic-coding",
|
|
@@ -39,6 +39,13 @@
|
|
|
39
39
|
"exports": {
|
|
40
40
|
".": "./opencode/plugin.mjs"
|
|
41
41
|
},
|
|
42
|
+
"dependencies": {
|
|
43
|
+
"jsonc-parser": "^3.3.1"
|
|
44
|
+
},
|
|
45
|
+
"devDependencies": {
|
|
46
|
+
"@changesets/cli": "2.29.6",
|
|
47
|
+
"oxfmt": "^0.36.0"
|
|
48
|
+
},
|
|
42
49
|
"scripts": {
|
|
43
50
|
"test": "bash tests/run.sh",
|
|
44
51
|
"format": "oxfmt",
|
|
@@ -52,18 +59,5 @@
|
|
|
52
59
|
"release": "changeset",
|
|
53
60
|
"version-packages": "changeset version && pnpm run sync:versions",
|
|
54
61
|
"ci:publish": "pnpm publish --access public"
|
|
55
|
-
},
|
|
56
|
-
"dependencies": {
|
|
57
|
-
"jsonc-parser": "^3.3.1"
|
|
58
|
-
},
|
|
59
|
-
"devDependencies": {
|
|
60
|
-
"@changesets/cli": "2.29.6",
|
|
61
|
-
"oxfmt": "^0.36.0"
|
|
62
|
-
},
|
|
63
|
-
"packageManager": "pnpm@10.19.0",
|
|
64
|
-
"pnpm": {
|
|
65
|
-
"patchedDependencies": {
|
|
66
|
-
"@changesets/assemble-release-plan@6.0.9": "patches/@changesets__assemble-release-plan@6.0.9.patch"
|
|
67
|
-
}
|
|
68
62
|
}
|
|
69
|
-
}
|
|
63
|
+
}
|