agent-toolbelt 0.2.1 → 0.2.2

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/index.d.mts CHANGED
@@ -185,6 +185,21 @@ interface BrandKitResult {
185
185
  googleFontsUrl?: string;
186
186
  };
187
187
  }
188
+ interface MeetingActionItem {
189
+ id: number;
190
+ owner: string;
191
+ task: string;
192
+ deadline?: string;
193
+ priority: "high" | "medium" | "low";
194
+ context?: string;
195
+ }
196
+ interface MeetingActionItemsResult {
197
+ meetingTitle: string;
198
+ actionItems: MeetingActionItem[];
199
+ actionItemCount: number;
200
+ summary?: string;
201
+ decisions?: string[];
202
+ }
188
203
  interface ImageMetadataStripperResult {
189
204
  image: string;
190
205
  outputFormat: string;
@@ -279,6 +294,12 @@ declare class AgentToolbelt {
279
294
  format?: "hex" | "rgb" | "hsl" | "all";
280
295
  includeShades?: boolean;
281
296
  }): Promise<ColorPaletteResult>;
297
+ /** Extract action items, decisions, and summary from meeting notes or transcripts */
298
+ meetingActionItems(input: {
299
+ notes: string;
300
+ format?: "action_items_only" | "full";
301
+ participants?: string[];
302
+ }): Promise<MeetingActionItemsResult>;
282
303
  /** Strip EXIF, GPS, ICC, IPTC, and XMP metadata from a base64-encoded image */
283
304
  imageMetadataStripper(input: {
284
305
  image: string;
@@ -295,4 +316,4 @@ declare class AgentToolbelt {
295
316
  }): Promise<BrandKitResult>;
296
317
  }
297
318
 
298
- export { type AddressNormalizerResult, AgentToolbelt, type AgentToolbeltOptions, type BrandKitResult, type ColorPaletteResult, type CronBuilderResult, type CsvToJsonResult, type ImageMetadataStripperResult, type MarkdownConverterResult, type RegexBuilderResult, type SchemaGeneratorResult, type TextExtractorResult, type TokenCountResult, type UrlMetadataResult };
319
+ export { type AddressNormalizerResult, AgentToolbelt, type AgentToolbeltOptions, type BrandKitResult, type ColorPaletteResult, type CronBuilderResult, type CsvToJsonResult, type ImageMetadataStripperResult, type MarkdownConverterResult, type MeetingActionItem, type MeetingActionItemsResult, type RegexBuilderResult, type SchemaGeneratorResult, type TextExtractorResult, type TokenCountResult, type UrlMetadataResult };
package/dist/index.d.ts CHANGED
@@ -185,6 +185,21 @@ interface BrandKitResult {
185
185
  googleFontsUrl?: string;
186
186
  };
187
187
  }
188
+ interface MeetingActionItem {
189
+ id: number;
190
+ owner: string;
191
+ task: string;
192
+ deadline?: string;
193
+ priority: "high" | "medium" | "low";
194
+ context?: string;
195
+ }
196
+ interface MeetingActionItemsResult {
197
+ meetingTitle: string;
198
+ actionItems: MeetingActionItem[];
199
+ actionItemCount: number;
200
+ summary?: string;
201
+ decisions?: string[];
202
+ }
188
203
  interface ImageMetadataStripperResult {
189
204
  image: string;
190
205
  outputFormat: string;
@@ -279,6 +294,12 @@ declare class AgentToolbelt {
279
294
  format?: "hex" | "rgb" | "hsl" | "all";
280
295
  includeShades?: boolean;
281
296
  }): Promise<ColorPaletteResult>;
297
+ /** Extract action items, decisions, and summary from meeting notes or transcripts */
298
+ meetingActionItems(input: {
299
+ notes: string;
300
+ format?: "action_items_only" | "full";
301
+ participants?: string[];
302
+ }): Promise<MeetingActionItemsResult>;
282
303
  /** Strip EXIF, GPS, ICC, IPTC, and XMP metadata from a base64-encoded image */
283
304
  imageMetadataStripper(input: {
284
305
  image: string;
@@ -295,4 +316,4 @@ declare class AgentToolbelt {
295
316
  }): Promise<BrandKitResult>;
296
317
  }
297
318
 
298
- export { type AddressNormalizerResult, AgentToolbelt, type AgentToolbeltOptions, type BrandKitResult, type ColorPaletteResult, type CronBuilderResult, type CsvToJsonResult, type ImageMetadataStripperResult, type MarkdownConverterResult, type RegexBuilderResult, type SchemaGeneratorResult, type TextExtractorResult, type TokenCountResult, type UrlMetadataResult };
319
+ export { type AddressNormalizerResult, AgentToolbelt, type AgentToolbeltOptions, type BrandKitResult, type ColorPaletteResult, type CronBuilderResult, type CsvToJsonResult, type ImageMetadataStripperResult, type MarkdownConverterResult, type MeetingActionItem, type MeetingActionItemsResult, type RegexBuilderResult, type SchemaGeneratorResult, type TextExtractorResult, type TokenCountResult, type UrlMetadataResult };
package/dist/index.js CHANGED
@@ -90,6 +90,10 @@ var AgentToolbelt = class {
90
90
  colorPalette(input) {
91
91
  return this.call("color-palette", input);
92
92
  }
93
+ /** Extract action items, decisions, and summary from meeting notes or transcripts */
94
+ meetingActionItems(input) {
95
+ return this.call("meeting-action-items", input);
96
+ }
93
97
  /** Strip EXIF, GPS, ICC, IPTC, and XMP metadata from a base64-encoded image */
94
98
  imageMetadataStripper(input) {
95
99
  return this.call("image-metadata-stripper", input);
package/dist/index.mjs CHANGED
@@ -64,6 +64,10 @@ var AgentToolbelt = class {
64
64
  colorPalette(input) {
65
65
  return this.call("color-palette", input);
66
66
  }
67
+ /** Extract action items, decisions, and summary from meeting notes or transcripts */
68
+ meetingActionItems(input) {
69
+ return this.call("meeting-action-items", input);
70
+ }
67
71
  /** Strip EXIF, GPS, ICC, IPTC, and XMP metadata from a base64-encoded image */
68
72
  imageMetadataStripper(input) {
69
73
  return this.call("image-metadata-stripper", input);
package/dist/langchain.js CHANGED
@@ -165,6 +165,20 @@ function createLangChainTools(client) {
165
165
  return JSON.stringify(result);
166
166
  }
167
167
  }),
168
+ // ---- Meeting Action Items ----
169
+ new import_tools.DynamicStructuredTool({
170
+ name: "extract_meeting_action_items",
171
+ description: "Extract structured action items, key decisions, and a summary from meeting notes or transcripts. Use this after a meeting to automatically generate a task list with owners, deadlines, and priorities. Works with raw transcripts, bullet-point notes, or any free-form meeting text. Returns each action item with the responsible person, what needs to be done, deadline (if mentioned), and priority level. The 'full' format also includes a meeting summary and list of decisions made.",
172
+ schema: import_zod.z.object({
173
+ notes: import_zod.z.string().describe("Meeting notes or transcript to extract action items from"),
174
+ format: import_zod.z.enum(["action_items_only", "full"]).default("full").describe("'full' includes summary and decisions; 'action_items_only' returns just the task list"),
175
+ participants: import_zod.z.array(import_zod.z.string()).optional().describe("Known participant names to help with owner attribution")
176
+ }),
177
+ func: async ({ notes, format, participants }) => {
178
+ const result = await client.meetingActionItems({ notes, format, participants });
179
+ return JSON.stringify(result);
180
+ }
181
+ }),
168
182
  // ---- Image Metadata Stripper ----
169
183
  new import_tools.DynamicStructuredTool({
170
184
  name: "strip_image_metadata",
@@ -141,6 +141,20 @@ function createLangChainTools(client) {
141
141
  return JSON.stringify(result);
142
142
  }
143
143
  }),
144
+ // ---- Meeting Action Items ----
145
+ new DynamicStructuredTool({
146
+ name: "extract_meeting_action_items",
147
+ description: "Extract structured action items, key decisions, and a summary from meeting notes or transcripts. Use this after a meeting to automatically generate a task list with owners, deadlines, and priorities. Works with raw transcripts, bullet-point notes, or any free-form meeting text. Returns each action item with the responsible person, what needs to be done, deadline (if mentioned), and priority level. The 'full' format also includes a meeting summary and list of decisions made.",
148
+ schema: z.object({
149
+ notes: z.string().describe("Meeting notes or transcript to extract action items from"),
150
+ format: z.enum(["action_items_only", "full"]).default("full").describe("'full' includes summary and decisions; 'action_items_only' returns just the task list"),
151
+ participants: z.array(z.string()).optional().describe("Known participant names to help with owner attribution")
152
+ }),
153
+ func: async ({ notes, format, participants }) => {
154
+ const result = await client.meetingActionItems({ notes, format, participants });
155
+ return JSON.stringify(result);
156
+ }
157
+ }),
144
158
  // ---- Image Metadata Stripper ----
145
159
  new DynamicStructuredTool({
146
160
  name: "strip_image_metadata",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agent-toolbelt",
3
- "version": "0.2.1",
3
+ "version": "0.2.2",
4
4
  "description": "Official SDK for Agent Toolbelt — typed API client and LangChain tool wrappers for schema generation, text extraction, token counting, CSV conversion, and more.",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",