feat(shared): add shared utilities for command and skill loading

- frontmatter.ts: YAML frontmatter parser
- file-reference-resolver.ts: resolve @file references in markdown
- command-executor.ts: execute shell commands in markdown
- model-sanitizer.ts: sanitize model names for OpenCode compatibility

🤖 GENERATED WITH ASSISTANCE OF [OhMyOpenCode](https://github.com/code-yeongyu/oh-my-opencode)
This commit is contained in:
YeonGyu-Kim
2025-12-09 15:48:05 +09:00
parent e07a25baa4
commit 47f218e33f
5 changed files with 339 additions and 0 deletions

4
src/shared/index.ts Normal file
View File

@@ -0,0 +1,4 @@
export * from "./frontmatter"
export * from "./command-executor"
export * from "./file-reference-resolver"
export * from "./model-sanitizer"