@allpepper/task-orchestrator-tui 1.2.0 → 1.2.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@allpepper/task-orchestrator-tui",
3
- "version": "1.2.0",
3
+ "version": "1.2.1",
4
4
  "description": "Terminal UI for task orchestration - Kanban boards, tree views, and task management",
5
5
  "type": "module",
6
6
  "bin": {
package/src/tui/app.tsx CHANGED
@@ -111,6 +111,7 @@ export function App() {
111
111
  { key: 'f', label: 'Project Info' },
112
112
  { key: 'e', label: 'Edit Project' },
113
113
  { key: 'd', label: 'Delete Project' },
114
+ { key: 'r', label: 'Refresh' },
114
115
  { key: 'h', label: 'Back' },
115
116
  ]
116
117
  : []),
@@ -270,7 +270,6 @@ export function FeatureDetail({ featureId, onSelectTask, onBack }: FeatureDetail
270
270
  onCancel={() => setMode('idle')}
271
271
  onSubmit={(values) => {
272
272
  adapter.createTask({
273
- projectId: feature.projectId,
274
273
  featureId: feature.id,
275
274
  title: values.title ?? '',
276
275
  summary: values.summary ?? '',
@@ -405,7 +405,6 @@ export function ProjectView({ projectId, expandedFeatures, onExpandedFeaturesCha
405
405
  ? currentRow.task.featureId
406
406
  : undefined;
407
407
  adapter.createTask({
408
- projectId,
409
408
  featureId,
410
409
  title: values.title ?? '',
411
410
  summary: values.summary ?? '',
@@ -216,7 +216,6 @@ export class DirectAdapter implements DataAdapter {
216
216
  }
217
217
 
218
218
  async createTask(params: {
219
- projectId?: string;
220
219
  featureId?: string;
221
220
  title: string;
222
221
  summary: string;
@@ -164,7 +164,6 @@ export interface DataAdapter {
164
164
  getTask(id: string): Promise<Result<Task>>;
165
165
 
166
166
  createTask(params: {
167
- projectId?: string;
168
167
  featureId?: string;
169
168
  title: string;
170
169
  summary: string;