@townco/agent 0.1.124 → 0.1.125
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/templates/index.d.ts +8 -0
- package/dist/templates/index.js +43 -14
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +7 -7
- package/templates/index.ts +63 -20
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@townco/agent",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.125",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"module": "index.ts",
|
|
6
6
|
"files": [
|
|
@@ -83,12 +83,12 @@
|
|
|
83
83
|
"@opentelemetry/sdk-trace-base": "^1.28.0",
|
|
84
84
|
"@opentelemetry/sdk-trace-node": "^1.28.0",
|
|
85
85
|
"@opentelemetry/semantic-conventions": "^1.28.0",
|
|
86
|
-
"@townco/apiclient": "0.0.
|
|
87
|
-
"@townco/core": "0.0.
|
|
88
|
-
"@townco/gui-template": "0.1.
|
|
89
|
-
"@townco/tsconfig": "0.1.
|
|
90
|
-
"@townco/tui-template": "0.1.
|
|
91
|
-
"@townco/ui": "0.1.
|
|
86
|
+
"@townco/apiclient": "0.0.37",
|
|
87
|
+
"@townco/core": "0.0.95",
|
|
88
|
+
"@townco/gui-template": "0.1.114",
|
|
89
|
+
"@townco/tsconfig": "0.1.114",
|
|
90
|
+
"@townco/tui-template": "0.1.114",
|
|
91
|
+
"@townco/ui": "0.1.117",
|
|
92
92
|
"ai-tokenizer": "^1.0.6",
|
|
93
93
|
"exa-js": "^2.0.0",
|
|
94
94
|
"hono": "^4.10.4",
|
package/templates/index.ts
CHANGED
|
@@ -4,6 +4,14 @@ import type { AgentDefinition, McpConfigSchema } from "../definition";
|
|
|
4
4
|
|
|
5
5
|
type McpConfig = z.infer<typeof McpConfigSchema>;
|
|
6
6
|
|
|
7
|
+
/** Config for a subagent to wire up via makeSubagentsTool */
|
|
8
|
+
export interface SubagentConfig {
|
|
9
|
+
agentName: string;
|
|
10
|
+
toolDescription: string;
|
|
11
|
+
displayName?: string;
|
|
12
|
+
path: string;
|
|
13
|
+
}
|
|
14
|
+
|
|
7
15
|
export interface TemplateVars {
|
|
8
16
|
name: string;
|
|
9
17
|
model: string;
|
|
@@ -24,6 +32,7 @@ export interface TemplateVars {
|
|
|
24
32
|
}
|
|
25
33
|
>;
|
|
26
34
|
mcps?: McpConfig[];
|
|
35
|
+
subagents?: SubagentConfig[];
|
|
27
36
|
systemPrompt: string | null;
|
|
28
37
|
hasWebSearch: boolean;
|
|
29
38
|
hasGenerateImage: boolean;
|
|
@@ -83,6 +92,14 @@ export function getTemplateVars(
|
|
|
83
92
|
result.mcps = definition.mcps;
|
|
84
93
|
}
|
|
85
94
|
|
|
95
|
+
// Handle subagents if defined (using type assertion since AgentDefinition may not have subagents yet)
|
|
96
|
+
const defWithSubagents = definition as AgentDefinition & {
|
|
97
|
+
subagents?: SubagentConfig[];
|
|
98
|
+
};
|
|
99
|
+
if (defWithSubagents.subagents && defWithSubagents.subagents.length > 0) {
|
|
100
|
+
result.subagents = defWithSubagents.subagents;
|
|
101
|
+
}
|
|
102
|
+
|
|
86
103
|
return result;
|
|
87
104
|
}
|
|
88
105
|
|
|
@@ -123,41 +140,67 @@ export function generatePackageJson(vars: TemplateVars): string {
|
|
|
123
140
|
}
|
|
124
141
|
|
|
125
142
|
export async function generateIndexTs(vars: TemplateVars): Promise<string> {
|
|
126
|
-
|
|
127
|
-
const agentDef: Record<string, unknown> = {
|
|
128
|
-
model: vars.model,
|
|
129
|
-
};
|
|
143
|
+
const hasSubagents = vars.subagents && vars.subagents.length > 0;
|
|
130
144
|
|
|
145
|
+
let imports =
|
|
146
|
+
'import type { AgentDefinition } from "@townco/agent/definition";';
|
|
147
|
+
if (hasSubagents) {
|
|
148
|
+
imports += '\nimport { makeSubagentsTool } from "@townco/agent/utils";';
|
|
149
|
+
}
|
|
150
|
+
|
|
151
|
+
// Build tools code - either plain JSON or with makeSubagentsTool call
|
|
152
|
+
const toolsCode: string = (() => {
|
|
153
|
+
if (!hasSubagents) {
|
|
154
|
+
return JSON.stringify(vars.tools);
|
|
155
|
+
}
|
|
156
|
+
// makeSubagentsTool expects 'description' not 'toolDescription'
|
|
157
|
+
const subagentConfigs = vars.subagents!.map((s) => ({
|
|
158
|
+
agentName: s.agentName,
|
|
159
|
+
description: s.toolDescription,
|
|
160
|
+
...(s.displayName && { displayName: s.displayName }),
|
|
161
|
+
path: s.path,
|
|
162
|
+
}));
|
|
163
|
+
const subagentToolCall = `makeSubagentsTool(${JSON.stringify(subagentConfigs, null, 2)})`;
|
|
164
|
+
const toolItems = vars.tools.map((t) => JSON.stringify(t));
|
|
165
|
+
toolItems.push(subagentToolCall);
|
|
166
|
+
return `[${toolItems.join(", ")}]`;
|
|
167
|
+
})();
|
|
168
|
+
|
|
169
|
+
// Build optional fields
|
|
170
|
+
const optionalFields: string[] = [];
|
|
131
171
|
if (vars.displayName) {
|
|
132
|
-
|
|
172
|
+
optionalFields.push(`displayName: ${JSON.stringify(vars.displayName)},`);
|
|
133
173
|
}
|
|
134
174
|
if (vars.description) {
|
|
135
|
-
|
|
175
|
+
optionalFields.push(`description: ${JSON.stringify(vars.description)},`);
|
|
136
176
|
}
|
|
137
177
|
if (vars.suggestedPrompts) {
|
|
138
|
-
|
|
178
|
+
optionalFields.push(
|
|
179
|
+
`suggestedPrompts: ${JSON.stringify(vars.suggestedPrompts)},`,
|
|
180
|
+
);
|
|
139
181
|
}
|
|
140
|
-
|
|
141
|
-
agentDef.systemPrompt = vars.systemPrompt;
|
|
142
|
-
agentDef.tools = vars.tools;
|
|
143
|
-
|
|
144
182
|
if (vars.mcps && vars.mcps.length > 0) {
|
|
145
|
-
|
|
183
|
+
optionalFields.push(`mcps: ${JSON.stringify(vars.mcps)},`);
|
|
146
184
|
}
|
|
147
|
-
|
|
148
185
|
if (vars.hooks) {
|
|
149
|
-
|
|
186
|
+
optionalFields.push(`hooks: ${JSON.stringify(vars.hooks)},`);
|
|
150
187
|
}
|
|
151
188
|
|
|
152
|
-
|
|
153
|
-
|
|
189
|
+
const optionalFieldsStr =
|
|
190
|
+
optionalFields.length > 0 ? `\n ${optionalFields.join("\n ")}` : "";
|
|
154
191
|
|
|
155
|
-
const
|
|
192
|
+
const code = `${imports}
|
|
193
|
+
|
|
194
|
+
const agent: AgentDefinition = {
|
|
195
|
+
model: ${JSON.stringify(vars.model)},${optionalFieldsStr}
|
|
196
|
+
systemPrompt: ${JSON.stringify(vars.systemPrompt)},
|
|
197
|
+
tools: ${toolsCode},
|
|
198
|
+
};
|
|
156
199
|
|
|
157
200
|
export default agent;
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
);
|
|
201
|
+
`;
|
|
202
|
+
|
|
203
|
+
return prettier.format(code, { parser: "typescript" });
|
|
161
204
|
}
|
|
162
205
|
|
|
163
206
|
export function generateBinTs(): string {
|