@fakhrulraharjo/opencode-skill-creator 0.3.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/package.json ADDED
@@ -0,0 +1,62 @@
1
+ {
2
+ "name": "@fakhrulraharjo/opencode-skill-creator",
3
+ "version": "0.3.0",
4
+ "description": "OpenCode plugin for skill creation with oh-my-openagent compatibility — custom tools for validation, evaluation, description optimization, benchmarking, and review serving. Fork of opencode-skill-creator with detectionMode='auto' support for routing agents (Sisyphus/hephaestus/prometheus).",
5
+ "type": "module",
6
+ "main": "./dist/skill-creator.js",
7
+ "bin": {
8
+ "opencode-skill-creator": "./bin/opencode-skill-creator.js"
9
+ },
10
+ "scripts": {
11
+ "build": "node ./scripts/build.mjs",
12
+ "test": "node --test test/*.test.mjs",
13
+ "test:ts": "for f in test/*.test.ts; do bun test --isolate \"$f\" || exit 1; done",
14
+ "prepack": "npm run build && npm test && npm run test:ts"
15
+ },
16
+ "dependencies": {
17
+ "jsonc-parser": "^3.3.1"
18
+ },
19
+ "files": [
20
+ "README.md",
21
+ "bin/",
22
+ "dist/"
23
+ ],
24
+ "keywords": [
25
+ "opencode",
26
+ "opencode-plugin",
27
+ "skill-creator",
28
+ "ai-skills",
29
+ "agent-skills",
30
+ "eval",
31
+ "benchmark",
32
+ "description-optimization",
33
+ "skill-evaluation",
34
+ "llm",
35
+ "ai-agent",
36
+ "open-source",
37
+ "typescript"
38
+ ],
39
+ "repository": {
40
+ "type": "git",
41
+ "url": "git+https://github.com/fakhrulraharjo/opencode-skill-creator.git",
42
+ "directory": "plugin"
43
+ },
44
+ "homepage": "https://github.com/fakhrulraharjo/opencode-skill-creator#readme",
45
+ "bugs": {
46
+ "url": "https://github.com/fakhrulraharjo/opencode-skill-creator/issues"
47
+ },
48
+ "engines": {
49
+ "node": ">=18"
50
+ },
51
+ "publishConfig": {
52
+ "access": "public"
53
+ },
54
+ "license": "Apache-2.0",
55
+ "peerDependencies": {
56
+ "@opencode-ai/plugin": ">=1.0.0"
57
+ },
58
+ "devDependencies": {
59
+ "@opencode-ai/plugin": "^1.0.0",
60
+ "@types/bun": "latest"
61
+ }
62
+ }