tycono 0.1.89-beta.1 → 0.1.90

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tycono",
3
- "version": "0.1.89-beta.1",
3
+ "version": "0.1.90",
4
4
  "description": "Build an AI company. Watch them work.",
5
5
  "type": "module",
6
6
  "bin": {
@@ -21,7 +21,7 @@ import { engineRouter } from './routes/engine.js';
21
21
  import { sessionsRouter } from './routes/sessions.js';
22
22
  import { setupRouter } from './routes/setup.js';
23
23
  import { getAllActivities, completeActivity } from './services/activity-tracker.js';
24
- import { type RoleStatus, isRoleActive } from '../../shared/types';
24
+ import { type RoleStatus, isRoleActive } from '../../shared/types.js';
25
25
  import { knowledgeRouter } from './routes/knowledge.js';
26
26
  import { preferencesRouter } from './routes/preferences.js';
27
27
  import { saveRouter } from './routes/save.js';
@@ -42,8 +42,8 @@ export interface AssembledContext {
42
42
  * 8. CEO Decisions (전사 공지 — Approved 결정만)
43
43
  * 9. Task
44
44
  */
45
- export type { TeamStatus } from '../../../shared/types';
46
- import { type RoleStatus, type TeamStatus, isRoleActive } from '../../../shared/types';
45
+ export type { TeamStatus } from '../../../shared/types.js';
46
+ import { type RoleStatus, type TeamStatus, isRoleActive } from '../../../shared/types.js';
47
47
 
48
48
  export function assembleContext(
49
49
  companyRoot: string,
@@ -23,8 +23,8 @@ export interface ImageAttachment {
23
23
 
24
24
  /* ─── Config ──────────────────────────────────── */
25
25
 
26
- export type { TeamStatus } from '../../../../shared/types';
27
- import type { TeamStatus } from '../../../../shared/types';
26
+ export type { TeamStatus } from '../../../../shared/types.js';
27
+ import type { TeamStatus } from '../../../../shared/types.js';
28
28
 
29
29
  export interface RunnerConfig {
30
30
  companyRoot: string;
@@ -14,7 +14,7 @@ import {
14
14
  type ImageAttachment,
15
15
  } from '../services/session-store.js';
16
16
  import { jobManager, type Job } from '../services/job-manager.js';
17
- import { type JobStatus, type RoleStatus, type WaveRoleStatus, type TeamStatus, isJobActive, isRoleActive, jobStatusToRoleStatus, eventTypeToJobStatus } from '../../../shared/types';
17
+ import { type JobStatus, type RoleStatus, type WaveRoleStatus, type TeamStatus, isJobActive, isRoleActive, jobStatusToRoleStatus, eventTypeToJobStatus } from '../../../shared/types.js';
18
18
  import { ActivityStream, type ActivityEvent, type ActivitySubscriber } from '../services/activity-stream.js';
19
19
  import { earnCoinsInternal } from './coins.js';
20
20
  import { appendFollowUpToWave } from '../services/wave-tracker.js';
@@ -4,7 +4,7 @@ import { extractBoldKeyValues } from '../services/markdown-parser.js';
4
4
  import { ActivityStream } from '../services/activity-stream.js';
5
5
  import path from 'node:path';
6
6
  import fs from 'node:fs';
7
- import { type JobStatus, isJobActive } from '../../../shared/types';
7
+ import { type JobStatus, isJobActive } from '../../../shared/types.js';
8
8
 
9
9
  export const operationsRouter = Router();
10
10
 
@@ -11,7 +11,7 @@ import {
11
11
  type Message,
12
12
  } from '../services/session-store.js';
13
13
  import { jobManager } from '../services/job-manager.js';
14
- import { isJobActive } from '../../../shared/types';
14
+ import { isJobActive } from '../../../shared/types.js';
15
15
  import { ActivityStream, type ActivityEvent } from '../services/activity-stream.js';
16
16
  import { updateFollowUpForReply } from '../services/wave-tracker.js';
17
17
 
@@ -4,8 +4,8 @@ import { COMPANY_ROOT } from './file-reader.js';
4
4
 
5
5
  /* ─── Types (re-export from shared contract) ── */
6
6
 
7
- export { type ActivityEventType, type ActivityEvent } from '../../../shared/types';
8
- import type { ActivityEventType, ActivityEvent } from '../../../shared/types';
7
+ export { type ActivityEventType, type ActivityEvent } from '../../../shared/types.js';
8
+ import type { ActivityEventType, ActivityEvent } from '../../../shared/types.js';
9
9
 
10
10
  /* ─── Constants ──────────────────────────── */
11
11
 
@@ -1,7 +1,7 @@
1
1
  import fs from 'node:fs';
2
2
  import path from 'node:path';
3
3
  import { COMPANY_ROOT } from './file-reader.js';
4
- import type { RoleStatus } from '../../../shared/types';
4
+ import type { RoleStatus } from '../../../shared/types.js';
5
5
 
6
6
  function activityDir(): string {
7
7
  return path.join(COMPANY_ROOT, 'operations', 'activity');
@@ -15,8 +15,8 @@ import { portRegistry, type PortAllocation } from './port-registry.js';
15
15
 
16
16
  /* ─── Types (re-export from shared contract) ─── */
17
17
 
18
- export { type JobType, type JobStatus, type JobInfo, isJobActive, canTransition, jobStatusToRoleStatus } from '../../../shared/types';
19
- import { type JobType, type JobStatus, type JobInfo, isJobActive, canTransition } from '../../../shared/types';
18
+ export { type JobType, type JobStatus, type JobInfo, isJobActive, canTransition, jobStatusToRoleStatus } from '../../../shared/types.js';
19
+ import { type JobType, type JobStatus, type JobInfo, isJobActive, canTransition } from '../../../shared/types.js';
20
20
 
21
21
  export interface Job {
22
22
  id: string;
@@ -1,7 +1,7 @@
1
1
  import fs from 'node:fs';
2
2
  import path from 'node:path';
3
3
  import { COMPANY_ROOT } from './file-reader.js';
4
- import { type ActivityEvent, type SessionSource, type SessionStatus, type MessageStatus, isMessageTerminal } from '../../../shared/types';
4
+ import { type ActivityEvent, type SessionSource, type SessionStatus, type MessageStatus, isMessageTerminal } from '../../../shared/types.js';
5
5
 
6
6
  /* ─── Types ─────────────────────────────── */
7
7
 
@@ -1,6 +1,6 @@
1
1
  import { ActivityStream, type ActivityEvent, type ActivitySubscriber } from './activity-stream.js';
2
2
  import type { Job } from './job-manager.js';
3
- import { isJobActive } from '../../../shared/types';
3
+ import { isJobActive } from '../../../shared/types.js';
4
4
  import type { Response } from 'express';
5
5
 
6
6
  /* ─── Types ──────────────────────────────── */
@@ -7,7 +7,7 @@ import path from 'node:path';
7
7
  import { COMPANY_ROOT } from './file-reader.js';
8
8
  import { ActivityStream, type ActivityEvent } from './activity-stream.js';
9
9
  import { jobManager } from './job-manager.js';
10
- import { type WaveRoleStatus, eventTypeToJobStatus } from '../../../shared/types';
10
+ import { type WaveRoleStatus, eventTypeToJobStatus } from '../../../shared/types.js';
11
11
 
12
12
  /* ─── Find wave file ──────────────────────── */
13
13