suemo 0.1.1 → 0.1.2
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 +1 -1
- package/skills/suemo/SKILL.md +1 -1
- package/skills/suemo/references/agents-snippet.md +1 -1
- package/skills/suemo/references/cli-reference.md +1 -1
- package/skills/suemo/references/core-workflow.md +1 -1
- package/skills/suemo/references/manual-test-plan.md +1 -1
- package/skills/suemo/references/mcp-reference.md +1 -1
- package/skills/suemo/references/schema-retention-longevity.md +1 -1
- package/skills/suemo/references/sync-local-vps.md +1 -1
- package/src/skill/catalog.ts +2 -2
package/package.json
CHANGED
package/skills/suemo/SKILL.md
CHANGED
package/src/skill/catalog.ts
CHANGED
|
@@ -6,7 +6,7 @@ const PROJECT_ROOT = dirname(
|
|
|
6
6
|
fileURLToPath(import.meta.resolve('@/package.json')),
|
|
7
7
|
)
|
|
8
8
|
|
|
9
|
-
|
|
9
|
+
const SKILL_FILE_PATH = `${PROJECT_ROOT}/skills/suemo/SKILL.md`
|
|
10
10
|
const SKILL_REFERENCES_DIR = `${PROJECT_ROOT}/skills/suemo/references/`
|
|
11
11
|
|
|
12
12
|
export function skillFilePath(): string {
|
|
@@ -29,7 +29,7 @@ export function skillReferencePath(reference: string): string | null {
|
|
|
29
29
|
if (!cleaned) return null
|
|
30
30
|
const available = new Set(listSkillReferences())
|
|
31
31
|
if (!available.has(cleaned)) return null
|
|
32
|
-
return
|
|
32
|
+
return `${PROJECT_ROOT}/skills/suemo/references/${cleaned}.md`
|
|
33
33
|
}
|
|
34
34
|
|
|
35
35
|
export function readSkillReference(reference: string): { name: string; path: string; content: string } | null {
|