refactor(skills): move projectWiki and tdd skills from bundled to src/costrict/skill

This commit is contained in:
yhangf 2026-04-10 10:09:48 +08:00
parent 8b6bca6820
commit b3207747c4
3 changed files with 4 additions and 4 deletions

View File

@ -1,5 +1,5 @@
import { getProjectRoot } from '../../bootstrap/state.js'
import { registerBundledSkill } from '../bundledSkills.js'
import { registerBundledSkill } from '../../skills/bundledSkills.js'
// Orchestrator prompt for the /project-wiki skill.
// Uses `Agent` tool (CSC equivalent of opencode's `task` tool) to delegate

View File

@ -1,4 +1,4 @@
import { registerBundledSkill } from '../bundledSkills.js'
import { registerBundledSkill } from '../../skills/bundledSkills.js'
const TDD_PROMPT = `You are executing a comprehensive testing workflow to ensure code quality.

View File

@ -15,8 +15,8 @@ import { registerLoopSkill } from './loop.js'
import { registerDreamSkill } from './dream.js'
import { registerUpdateConfigSkill } from './updateConfig.js'
import { registerVerifySkill } from './verify.js'
import { registerProjectWikiSkill } from './projectWiki.js'
import { registerTddSkill } from './tdd.js'
import { registerProjectWikiSkill } from 'src/costrict/skill/projectWiki.js'
import { registerTddSkill } from 'src/costrict/skill/tdd.js'
/**
* Initialize all bundled skills.