feat(prompts-core): add package skeleton

Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-openagent)

Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai>
This commit is contained in:
YeonGyu-Kim
2026-05-24 17:16:49 +09:00
parent 87de056308
commit 4338ddb898
7 changed files with 122 additions and 0 deletions
+22
View File
@@ -0,0 +1,22 @@
{
"name": "@oh-my-opencode/prompts-core",
"version": "0.1.0",
"type": "module",
"private": true,
"description": "Harness-agnostic markdown prompt loading and model-variant routing for oh-my-opencode.",
"exports": {
".": {
"types": "./index.d.ts",
"import": "./src/index.ts"
}
},
"types": "./index.d.ts",
"scripts": {
"typecheck": "tsgo --noEmit -p tsconfig.json",
"test": "bun test src/*.test.ts test/*.test.ts"
},
"peerDependencies": {
"@oh-my-opencode/model-core": "workspace:*",
"@oh-my-opencode/utils": "workspace:*"
}
}