@laxture/vibe-pm 0.1.0 → 0.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/i18n/index.d.ts +1 -1
- package/dist/index.js +16 -787
- package/dist/memory/memory-system.d.ts +1 -1
- package/dist/memory/types.d.ts +1 -1
- package/dist/token/index.d.ts +0 -1
- package/dist/tui/data/task-status.d.ts +1 -1
- package/dist/tui/data/token-data.d.ts +1 -1
- package/dist/tui/index.js +20 -794
- package/package.json +15 -3
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import type { CreateDiscussionInput, CreateTaskInput, Discussion, StepTokenMetrics, IMemorySystem, SessionTokenMetrics, StepTokenBreakdown, StepTransition, SubagentTokenMetrics, Task } from './types.js';
|
|
2
|
-
import { ApiTelemetry, TokenCount } from '../token';
|
|
2
|
+
import type { ApiTelemetry, TokenCount } from '../token';
|
|
3
3
|
/**
|
|
4
4
|
* vibe-pm's Structured Memory layer.
|
|
5
5
|
*
|
package/dist/memory/types.d.ts
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* Manages three categories of Structured Memory: Task (Task State),
|
|
5
5
|
* Discussion (Discussion items), StepTokenMetrics (Flow Metrics).
|
|
6
6
|
*/
|
|
7
|
-
import { ApiTelemetry, TokenCount } from '../token';
|
|
7
|
+
import type { ApiTelemetry, TokenCount } from '../token';
|
|
8
8
|
/** Step transition record: written once per setStep call, appended in chronological order */
|
|
9
9
|
export interface StepTransition {
|
|
10
10
|
/** Source Step ID */
|
package/dist/token/index.d.ts
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
*
|
|
4
4
|
* Loads status info for the current or previous task from IMemorySystem.
|
|
5
5
|
*/
|
|
6
|
-
import type { IMemorySystem } from '../../memory
|
|
6
|
+
import type { IMemorySystem } from '../../memory';
|
|
7
7
|
import type { TaskStatusData } from '../types.js';
|
|
8
8
|
/**
|
|
9
9
|
* Load task status data for the specified session.
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* Session-level data comes from the session_tokens table, calibrated with display formulas.
|
|
6
6
|
* Step-level data comes from flowMetrics aggregation.
|
|
7
7
|
*/
|
|
8
|
-
import type { IMemorySystem } from '../../memory
|
|
8
|
+
import type { IMemorySystem } from '../../memory';
|
|
9
9
|
import type { TokenData } from '../types.js';
|
|
10
10
|
/**
|
|
11
11
|
* Load token distribution data for the specified session.
|