mirror of
https://github.com/deepseek-ai/deepseek-harness
synced 2026-08-15 21:04:50 +00:00
Add HeadlessPromptPort (fail-loud non-interactive PromptPort), thread prefilled feature values through FeatureConfigurator, and let CreateWizard and ConfigWorkflow accept a headless feature plan that skips the interactive tree/suggests prompts. Per-file 100% coverage on all changed files.
47 lines
1.7 KiB
TypeScript
47 lines
1.7 KiB
TypeScript
/**
|
|
* Shared domain and infrastructure for DeepSeek Harness SDK project tooling.
|
|
*
|
|
* @module @deepseek-ai/dsh-helper
|
|
*/
|
|
|
|
export { featureId } from './ids.ts'
|
|
export { TextTemplate } from './templates/text-template.ts'
|
|
export type {
|
|
FeatureSelection,
|
|
ProjectCreationRequest,
|
|
ProjectProfile,
|
|
RunInterface,
|
|
} from './project/types.ts'
|
|
export type { ChangeSet, ProjectCommitResult } from './project/change-set.ts'
|
|
export { SdkProject } from './project/sdk-project.ts'
|
|
export {
|
|
NodeCommandRunner,
|
|
NpmPackageManager,
|
|
createPackageManager,
|
|
inferPackageManagerName,
|
|
probePackageManagerVersion,
|
|
} from './package-managers/package-manager.ts'
|
|
export type {
|
|
CommandRunner,
|
|
PackageManager,
|
|
PackageManagerName,
|
|
PackageManagerVersionProbe,
|
|
} from './package-managers/package-manager.ts'
|
|
export { LocalPluginBlueprint } from './plugins/local-plugin-blueprint.ts'
|
|
export type { LocalPluginKind } from './plugins/local-plugin-blueprint.ts'
|
|
export type { Feature, FeatureInstallation } from './features/feature.ts'
|
|
export type { FeatureRegistry } from './features/registry.ts'
|
|
export { FeatureConfigurator } from './features/feature-configurator.ts'
|
|
export { createBuiltinRegistry } from './features/builtin/index.ts'
|
|
export { PromptCancelledError, requireAnswer } from './questions/prompt-port.ts'
|
|
export type { NestedMultiSelectValue, PromptPort } from './questions/prompt-port.ts'
|
|
export {
|
|
ConfirmQuestion,
|
|
SecretQuestion,
|
|
SelectQuestion,
|
|
TextQuestion,
|
|
} from './questions/question.ts'
|
|
export type { Question } from './questions/question.ts'
|
|
export { ClackPromptPort } from './questions/clack-prompt-port.ts'
|
|
export { HeadlessPromptError, HeadlessPromptPort } from './questions/headless-prompt-port.ts'
|