fix: complete shared barrel exports and add import-claude to help text (#1198)

Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
TÂCHES 2026-03-18 11:20:25 -06:00 committed by GitHub
parent 9cbd179bf9
commit 0b22394496
2 changed files with 4 additions and 1 deletions

View file

@ -846,7 +846,7 @@ function showHelp(ctx: ExtensionCommandContext): void {
" /gsd init Project init wizard — detect, configure, bootstrap .gsd/",
" /gsd setup Global setup status [llm|search|remote|keys|prefs]",
" /gsd mode Set workflow mode (solo/team) [global|project]",
" /gsd prefs Manage preferences [global|project|status|wizard|setup]",
" /gsd prefs Manage preferences [global|project|status|wizard|setup|import-claude]",
" /gsd config Set API keys for external tools",
" /gsd keys API key manager [list|add|remove|test|rotate|doctor]",
" /gsd hooks Show post-unit hook configuration",

View file

@ -28,3 +28,6 @@ export { showInterviewRound } from "./interview-ui.js";
export type { Question, QuestionOption, RoundResult } from "./interview-ui.js";
export { showNextAction } from "./next-action-ui.js";
export { showConfirm } from "./confirm-ui.js";
export { sanitizeError } from "./sanitize.js";
export { formatDateShort, truncateWithEllipsis } from "./format-utils.js";
export { splitFrontmatter, parseFrontmatterMap } from "./frontmatter.js";