pluidr 0.3.0 → 0.3.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/README.md +4 -0
- package/package.json +22 -1
package/README.md
CHANGED
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
# Pluidr
|
|
2
2
|
|
|
3
|
+
[](https://www.npmjs.com/package/pluidr)
|
|
4
|
+
[](https://www.npmjs.com/package/pluidr)
|
|
5
|
+
[](https://github.com/funara/pluidr/blob/main/LICENSE)
|
|
6
|
+
|
|
3
7
|
**Plan · Build · Review · Debug** — opinionated engineering workflow installer for [OpenCode](https://opencode.ai).
|
|
4
8
|
|
|
5
9
|
## How it works
|
package/package.json
CHANGED
|
@@ -1,11 +1,32 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pluidr",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.1",
|
|
4
4
|
"description": "Opinionated Engineering Workflow for OpenCode — Plan, Build, Review.",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"opencode",
|
|
7
|
+
"workflow",
|
|
8
|
+
"engineering",
|
|
9
|
+
"pipeline",
|
|
10
|
+
"ai-agents",
|
|
11
|
+
"code-review",
|
|
12
|
+
"debugging",
|
|
13
|
+
"planner",
|
|
14
|
+
"builder",
|
|
15
|
+
"cli"
|
|
16
|
+
],
|
|
17
|
+
"license": "MIT",
|
|
5
18
|
"type": "module",
|
|
6
19
|
"bin": {
|
|
7
20
|
"pluidr": "bin/pluidr.js"
|
|
8
21
|
},
|
|
22
|
+
"repository": {
|
|
23
|
+
"type": "git",
|
|
24
|
+
"url": "git+https://github.com/funara/pluidr.git"
|
|
25
|
+
},
|
|
26
|
+
"homepage": "https://github.com/funara/pluidr#readme",
|
|
27
|
+
"bugs": {
|
|
28
|
+
"url": "https://github.com/funara/pluidr/issues"
|
|
29
|
+
},
|
|
9
30
|
"engines": {
|
|
10
31
|
"node": ">=18"
|
|
11
32
|
},
|