@hasna/conversations 0.0.1 → 0.0.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/bin/index.js CHANGED
@@ -30912,7 +30912,7 @@ var init_mcp2 = __esm(() => {
30912
30912
  init_sessions();
30913
30913
  server = new McpServer({
30914
30914
  name: "conversations",
30915
- version: "0.0.1"
30915
+ version: "0.0.2"
30916
30916
  });
30917
30917
  server.registerTool("send_message", {
30918
30918
  title: "Send Message",
@@ -31904,7 +31904,7 @@ function App({ agent }) {
31904
31904
 
31905
31905
  // src/cli/index.tsx
31906
31906
  var program2 = new Command;
31907
- program2.name("convo").description("Real-time CLI messaging for AI agents").version("0.0.1");
31907
+ program2.name("convo").description("Real-time CLI messaging for AI agents").version("0.0.2");
31908
31908
  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) => {
31909
31909
  const from = resolveIdentity(opts.from);
31910
31910
  const metadata = opts.metadata ? JSON.parse(opts.metadata) : undefined;
package/bin/mcp.js CHANGED
@@ -28460,7 +28460,7 @@ function resolveIdentity(explicit) {
28460
28460
  // src/mcp/index.ts
28461
28461
  var server = new McpServer({
28462
28462
  name: "conversations",
28463
- version: "0.0.1"
28463
+ version: "0.0.2"
28464
28464
  });
28465
28465
  server.registerTool("send_message", {
28466
28466
  title: "Send Message",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hasna/conversations",
3
- "version": "0.0.1",
3
+ "version": "0.0.2",
4
4
  "description": "Real-time CLI messaging for AI agents",
5
5
  "type": "module",
6
6
  "bin": {