@hasna/conversations 0.0.7 → 0.0.8
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/bin/index.js +2 -2
- package/bin/mcp.js +1 -1
- package/package.json +1 -1
package/bin/index.js
CHANGED
|
@@ -31005,7 +31005,7 @@ var init_mcp2 = __esm(() => {
|
|
|
31005
31005
|
init_channels();
|
|
31006
31006
|
server = new McpServer({
|
|
31007
31007
|
name: "conversations",
|
|
31008
|
-
version: "0.0.
|
|
31008
|
+
version: "0.0.8"
|
|
31009
31009
|
});
|
|
31010
31010
|
server.registerTool("send_message", {
|
|
31011
31011
|
title: "Send Message",
|
|
@@ -32277,7 +32277,7 @@ function App({ agent }) {
|
|
|
32277
32277
|
|
|
32278
32278
|
// src/cli/index.tsx
|
|
32279
32279
|
var program2 = new Command;
|
|
32280
|
-
program2.name("conversations").description("Real-time CLI messaging for AI agents").version("0.0.
|
|
32280
|
+
program2.name("conversations").description("Real-time CLI messaging for AI agents").version("0.0.8");
|
|
32281
32281
|
program2.command("send").description("Send a message to an agent").argument("<message>", "Message content").requiredOption("--to <agent>", "Recipient agent ID").option("--from <agent>", "Sender agent ID").option("--session <id>", "Session ID (auto-generated if omitted)").option("--priority <level>", "Priority: low, normal, high, urgent", "normal").option("--working-dir <path>", "Working directory context").option("--repository <repo>", "Repository context").option("--branch <branch>", "Branch context").option("--metadata <json>", "JSON metadata string").option("--json", "Output as JSON").action((message, opts) => {
|
|
32282
32282
|
const from = resolveIdentity(opts.from);
|
|
32283
32283
|
const metadata = opts.metadata ? JSON.parse(opts.metadata) : undefined;
|
package/bin/mcp.js
CHANGED
|
@@ -28539,7 +28539,7 @@ function resolveIdentity(explicit) {
|
|
|
28539
28539
|
// src/mcp/index.ts
|
|
28540
28540
|
var server = new McpServer({
|
|
28541
28541
|
name: "conversations",
|
|
28542
|
-
version: "0.0.
|
|
28542
|
+
version: "0.0.8"
|
|
28543
28543
|
});
|
|
28544
28544
|
server.registerTool("send_message", {
|
|
28545
28545
|
title: "Send Message",
|