takt/src/infra/fs/index.ts
nrslib a49d3af7a9 settingSources に project を追加し、CLAUDE.md の読み込みを SDK に委譲
手動で CLAUDE.md を読み込んでいた loadProjectContext を削除し、
SDK の settingSources: ['project'] でプロジェクトコンテキストを自動解決するよう変更
2026-02-24 16:48:43 +09:00

30 lines
521 B
TypeScript

/**
* Filesystem utilities - barrel exports
*/
export type {
SessionLog,
NdjsonPieceStart,
NdjsonStepStart,
NdjsonStepComplete,
NdjsonPieceComplete,
NdjsonPieceAbort,
NdjsonPhaseStart,
NdjsonPhaseComplete,
NdjsonInteractiveStart,
NdjsonInteractiveEnd,
NdjsonRecord,
} from './session.js';
export {
SessionManager,
appendNdjsonLine,
initNdjsonLog,
loadNdjsonLog,
generateSessionId,
generateReportDir,
createSessionLog,
finalizeSessionLog,
loadSessionLog,
} from './session.js';