@draig/lexis-two 1.0.0 → 1.0.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 +3 -3
- package/package.json +7 -2
- package/site/src/components/Install.astro +2 -6
package/README.md
CHANGED
|
@@ -81,7 +81,7 @@ Add the package to your project's `opencode.json`:
|
|
|
81
81
|
|
|
82
82
|
```json
|
|
83
83
|
{
|
|
84
|
-
"plugin": ["@
|
|
84
|
+
"plugin": ["@draig/lexis-two"]
|
|
85
85
|
}
|
|
86
86
|
```
|
|
87
87
|
|
|
@@ -172,8 +172,8 @@ Run `/lexis-two-debt` to collect and prioritize all tagged items across the code
|
|
|
172
172
|
|
|
173
173
|
## Complementary Repos
|
|
174
174
|
|
|
175
|
-
| Repo
|
|
176
|
-
|
|
|
175
|
+
| Repo | What it adds |
|
|
176
|
+
| ---------------------------------------------------------------- | ------------------------------------------------------------------- |
|
|
177
177
|
| [my-cursor-skills](https://github.com/nitdraig/my-cursor-skills) | OpenCode/Cursor skills: code review, testing, security, performance |
|
|
178
178
|
|
|
179
179
|
---
|
package/package.json
CHANGED
|
@@ -1,11 +1,16 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@draig/lexis-two",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.2",
|
|
4
4
|
"description": "The simple way to obtain the best code. Portable rules, skills, and slash commands for AI agents with lowest tokens usage.",
|
|
5
5
|
"main": "./.opencode/plugins/lexis-two.mjs",
|
|
6
6
|
"exports": {
|
|
7
|
-
"./server": "./.opencode/plugins/lexis-two.mjs"
|
|
7
|
+
"./server": "./.opencode/plugins/lexis-two.mjs",
|
|
8
|
+
"./tui": "./.opencode/plugins/lexis-two.mjs"
|
|
8
9
|
},
|
|
10
|
+
"oc-plugin": [
|
|
11
|
+
"server",
|
|
12
|
+
"tui"
|
|
13
|
+
],
|
|
9
14
|
"keywords": [
|
|
10
15
|
"pi-package",
|
|
11
16
|
"pi",
|
|
@@ -18,11 +18,7 @@ const { install } = Astro.props;
|
|
|
18
18
|
<h2>{install.title}</h2>
|
|
19
19
|
<p>{install.subtitle}</p>
|
|
20
20
|
</div>
|
|
21
|
-
<div
|
|
22
|
-
class="install-tabs"
|
|
23
|
-
role="tablist"
|
|
24
|
-
aria-label="Install instructions"
|
|
25
|
-
>
|
|
21
|
+
<div class="install-tabs" role="tablist" aria-label="Install instructions">
|
|
26
22
|
<button
|
|
27
23
|
type="button"
|
|
28
24
|
class="tab-btn"
|
|
@@ -72,7 +68,7 @@ const { install } = Astro.props;
|
|
|
72
68
|
>
|
|
73
69
|
<pre><code set:html={`# Add to your opencode.json
|
|
74
70
|
{
|
|
75
|
-
"plugin": ["@
|
|
71
|
+
"plugin": ["@draig/lexis-two"]
|
|
76
72
|
}
|
|
77
73
|
|
|
78
74
|
# Optional: Copy slash commands globally to use them anywhere
|