mirror of
https://github.com/claude-code-best/claude-code.git
synced 2026-06-22 00:05:51 +00:00
feat: 添加 skill learning 技能学习闭环系统
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
37
src/services/skillLearning/index.ts
Normal file
37
src/services/skillLearning/index.ts
Normal file
@@ -0,0 +1,37 @@
|
||||
export * from './featureCheck.js'
|
||||
export * from './evolution.js'
|
||||
export {
|
||||
createInstinct,
|
||||
parseInstinct,
|
||||
serializeInstinct,
|
||||
} from './instinctParser.js'
|
||||
export * from './learningPolicy.js'
|
||||
export {
|
||||
exportInstincts,
|
||||
importInstincts,
|
||||
loadInstincts,
|
||||
prunePendingInstincts,
|
||||
saveInstinct,
|
||||
updateConfidence,
|
||||
upsertInstinct,
|
||||
} from './instinctStore.js'
|
||||
export {
|
||||
appendObservation,
|
||||
ingestTranscript,
|
||||
readObservations,
|
||||
scrubObservation,
|
||||
scrubText,
|
||||
} from './observationStore.js'
|
||||
export * from './promotion.js'
|
||||
export * from './projectContext.js'
|
||||
export * from './runtimeObserver.js'
|
||||
export * from './observerBackend.js'
|
||||
export { llmObserverBackend } from './llmObserverBackend.js'
|
||||
export * from './commandGenerator.js'
|
||||
export * from './agentGenerator.js'
|
||||
export * from './toolEventObserver.js'
|
||||
export * from './sessionObserver.js'
|
||||
export * from './skillGapStore.js'
|
||||
export * from './skillGenerator.js'
|
||||
export * from './skillLifecycle.js'
|
||||
export * from './types.js'
|
||||
Reference in New Issue
Block a user