@townco/agent 0.1.85 → 0.1.87

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.
@@ -3,9 +3,9 @@ export declare const TODO_WRITE_TOOL_NAME = "todo_write";
3
3
  export declare const todoItemSchema: z.ZodObject<{
4
4
  content: z.ZodString;
5
5
  status: z.ZodEnum<{
6
- pending: "pending";
7
- in_progress: "in_progress";
8
6
  completed: "completed";
7
+ in_progress: "in_progress";
8
+ pending: "pending";
9
9
  }>;
10
10
  activeForm: z.ZodString;
11
11
  }, z.core.$strip>;
@@ -13,22 +13,22 @@ export declare function makeTodoWriteTool(): import("langchain").DynamicStructur
13
13
  todos: z.ZodArray<z.ZodObject<{
14
14
  content: z.ZodString;
15
15
  status: z.ZodEnum<{
16
- pending: "pending";
17
- in_progress: "in_progress";
18
16
  completed: "completed";
17
+ in_progress: "in_progress";
18
+ pending: "pending";
19
19
  }>;
20
20
  activeForm: z.ZodString;
21
21
  }, z.core.$strip>>;
22
22
  }, z.core.$strip>, {
23
23
  todos: {
24
24
  content: string;
25
- status: "pending" | "in_progress" | "completed";
25
+ status: "completed" | "in_progress" | "pending";
26
26
  activeForm: string;
27
27
  }[];
28
28
  }, {
29
29
  todos: {
30
30
  content: string;
31
- status: "pending" | "in_progress" | "completed";
31
+ status: "completed" | "in_progress" | "pending";
32
32
  activeForm: string;
33
33
  }[];
34
34
  }, string>;
@@ -36,22 +36,22 @@ export declare const todoWrite: import("langchain").DynamicStructuredTool<z.ZodO
36
36
  todos: z.ZodArray<z.ZodObject<{
37
37
  content: z.ZodString;
38
38
  status: z.ZodEnum<{
39
- pending: "pending";
40
- in_progress: "in_progress";
41
39
  completed: "completed";
40
+ in_progress: "in_progress";
41
+ pending: "pending";
42
42
  }>;
43
43
  activeForm: z.ZodString;
44
44
  }, z.core.$strip>>;
45
45
  }, z.core.$strip>, {
46
46
  todos: {
47
47
  content: string;
48
- status: "pending" | "in_progress" | "completed";
48
+ status: "completed" | "in_progress" | "pending";
49
49
  activeForm: string;
50
50
  }[];
51
51
  }, {
52
52
  todos: {
53
53
  content: string;
54
- status: "pending" | "in_progress" | "completed";
54
+ status: "completed" | "in_progress" | "pending";
55
55
  activeForm: string;
56
56
  }[];
57
57
  }, string>;
@@ -21,19 +21,19 @@ function generateProjectPackageJson() {
21
21
  "@radix-ui/react-select": "^2.2.6",
22
22
  "@radix-ui/react-slot": "^1.2.4",
23
23
  "@radix-ui/react-tabs": "^1.1.13",
24
+ "@townco/agent": "^0.1.20",
24
25
  "@townco/core": "~0.0.23",
25
26
  "@townco/ui": "^0.1.0",
26
- "@townco/agent": "^0.1.20",
27
27
  "class-variance-authority": "^0.7.1",
28
- clsx: "^2.1.1",
29
28
  "ink-text-input": "^6.0.0",
30
- ink: "^6.4.0",
31
29
  "lucide-react": "^0.552.0",
32
30
  "react-dom": "^19.2.0",
33
31
  "react-markdown": "^10.1.0",
34
- react: "^19.2.0",
35
32
  "remark-gfm": "^4.0.1",
36
33
  "tailwind-merge": "^3.3.1",
34
+ clsx: "^2.1.1",
35
+ ink: "^6.4.0",
36
+ react: "^19.2.0",
37
37
  zod: "^4.1.12",
38
38
  zustand: "^5.0.8",
39
39
  },