@rotifer/playground 0.7.9 → 0.8.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/CHANGELOG.md +34 -9
- package/LICENSE +1 -1
- package/README.md +5 -5
- package/README.zh.md +5 -5
- package/dist/cloud/client.d.ts +13 -1
- package/dist/cloud/client.d.ts.map +1 -1
- package/dist/cloud/client.js +62 -0
- package/dist/cloud/client.js.map +1 -1
- package/dist/cloud/types.d.ts +10 -0
- package/dist/cloud/types.d.ts.map +1 -1
- package/dist/cloud/types.js.map +1 -1
- package/dist/commands/agent-create.js +70 -6
- package/dist/commands/agent-create.js.map +1 -1
- package/dist/commands/compile.d.ts.map +1 -1
- package/dist/commands/compile.js +2 -0
- package/dist/commands/compile.js.map +1 -1
- package/dist/commands/init.d.ts.map +1 -1
- package/dist/commands/init.js +4 -0
- package/dist/commands/init.js.map +1 -1
- package/dist/commands/install.d.ts.map +1 -1
- package/dist/commands/install.js +1 -0
- package/dist/commands/install.js.map +1 -1
- package/dist/commands/login.js +2 -2
- package/dist/commands/vg.d.ts.map +1 -1
- package/dist/commands/vg.js +65 -17
- package/dist/commands/vg.js.map +1 -1
- package/dist/utils/phenotype-validator.d.ts +2 -0
- package/dist/utils/phenotype-validator.d.ts.map +1 -0
- package/dist/utils/phenotype-validator.js +154 -0
- package/dist/utils/phenotype-validator.js.map +1 -0
- package/genes/guard-balanced/.gene-manifest.json +8 -0
- package/genes/guard-balanced/phenotype.json +105 -0
- package/genes/guard-balanced/system-prompt.md +23 -0
- package/genes/guard-strict/.gene-manifest.json +8 -0
- package/genes/guard-strict/phenotype.json +107 -0
- package/genes/guard-strict/system-prompt.md +18 -0
- package/genes/prompt-review-perf/.gene-manifest.json +8 -0
- package/genes/prompt-review-perf/phenotype.json +61 -0
- package/genes/prompt-review-perf/system-prompt.md +22 -0
- package/genes/prompt-review-readability/.gene-manifest.json +8 -0
- package/genes/prompt-review-readability/phenotype.json +60 -0
- package/genes/prompt-review-readability/system-prompt.md +21 -0
- package/genes/prompt-review-security/.gene-manifest.json +8 -0
- package/genes/prompt-review-security/phenotype.json +60 -0
- package/genes/prompt-review-security/system-prompt.md +21 -0
- package/genes/rotifer-protocol/SKILL.md +1 -1
- package/genes/rule-router-frequency/.gene-manifest.json +8 -0
- package/genes/rule-router-frequency/phenotype.json +76 -0
- package/genes/rule-router-frequency/system-prompt.md +26 -0
- package/genes/rule-router-relevance/.gene-manifest.json +8 -0
- package/genes/rule-router-relevance/phenotype.json +76 -0
- package/genes/rule-router-relevance/system-prompt.md +29 -0
- package/package.json +4 -4
package/package.json
CHANGED
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rotifer/playground",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.8.0",
|
|
4
4
|
"description": "Rotifer Protocol Playground — local development environment for gene development, Arena competition, and protocol simulation",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"author": "Rotifer Protocol Contributors",
|
|
7
|
-
"homepage": "https://
|
|
7
|
+
"homepage": "https://github.com/rotifer-protocol/rotifer-playground#readme",
|
|
8
8
|
"repository": {
|
|
9
9
|
"type": "git",
|
|
10
|
-
"url": "git+https://
|
|
10
|
+
"url": "git+https://github.com/rotifer-protocol/rotifer-playground.git"
|
|
11
11
|
},
|
|
12
12
|
"bugs": {
|
|
13
|
-
"url": "https://
|
|
13
|
+
"url": "https://github.com/rotifer-protocol/rotifer-playground/issues"
|
|
14
14
|
},
|
|
15
15
|
"keywords": [
|
|
16
16
|
"rotifer",
|