Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion packages/jimmy-agent/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "@corbits/jimmy-agent",
"private": true,
"description": "Jimmy: a one-shot chat agent that searches Giphy and replies with a GIF",
"version": "0.0.1",
"version": "0.0.2",
"license": "LGPL-2.1-or-later",
"type": "module",
"interchange": {
Expand Down
2 changes: 1 addition & 1 deletion packages/jimmy-agent/src/metadata.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ export const GIF_SEARCH_TOOL = "gif_search";

/** This definition pins itself: the package that carries `gif_search` is this one. */
export const JIMMY_TOOL_PACKAGE_PINS: readonly ToolPackagePin[] = [
{ name: "@corbits/jimmy-agent", version: "0.0.1" },
{ name: "@corbits/jimmy-agent", version: "0.0.2" },
];

export const JIMMY_SYSTEM_PROMPT =
Expand Down
2 changes: 1 addition & 1 deletion packages/scout-agent/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "@corbits/scout-agent",
"private": true,
"description": "Scout, the research/due-diligence agent: a ported system prompt plus its firm-memory, web-research, and Library-artifact tool declarations for a workbench chat agent",
"version": "0.0.1",
"version": "0.0.2",
"license": "LGPL-2.1-or-later",
"type": "module",
"exports": {
Expand Down
2 changes: 1 addition & 1 deletion packages/scout-agent/src/definition.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ export const SCOUT_AGENT_DESCRIPTION =
export const SCOUT_TOOL_PACKAGE_PINS: readonly ToolPackagePin[] = [
{ name: "@corbits/memory-tools", version: "0.0.4" },
{ name: "@corbits/web-search-tools", version: "0.0.3" },
{ name: "@corbits/scout-agent", version: "0.0.1" },
{ name: "@corbits/scout-agent", version: "0.0.2" },
];

/** The plain-data shape the agent-directory create path takes. */
Expand Down
Loading