a2acalling 0.6.59 → 0.6.60

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "a2acalling",
3
- "version": "0.6.59",
3
+ "version": "0.6.60",
4
4
  "description": "Agent-to-agent calling for OpenClaw - A2A agent communication",
5
5
  "main": "src/index.js",
6
6
  "bin": {
@@ -37,12 +37,19 @@ const SKILL_FILES = [
37
37
  // Copied to .claude/ so Claude Code discovers it naturally without grepping
38
38
  // node_modules. This is opt-in context: only loaded when the agent looks.
39
39
  { src: 'SKILL.md', dest: '.claude/a2a-skill-reference.md' },
40
- // Claude Code slash commands
40
+ // Claude Code slash commands — core (A2A-28)
41
41
  { src: '.claude/commands/a2a-call.md', dest: '.claude/commands/a2a-call.md' },
42
42
  { src: '.claude/commands/a2a-invite.md', dest: '.claude/commands/a2a-invite.md' },
43
43
  { src: '.claude/commands/a2a-contacts.md', dest: '.claude/commands/a2a-contacts.md' },
44
44
  { src: '.claude/commands/a2a-status.md', dest: '.claude/commands/a2a-status.md' },
45
45
  { src: '.claude/commands/a2a-setup.md', dest: '.claude/commands/a2a-setup.md' },
46
+ // Claude Code slash commands — extended (A2A-43)
47
+ { src: '.claude/commands/a2a-update.md', dest: '.claude/commands/a2a-update.md' },
48
+ { src: '.claude/commands/a2a-uninstall.md', dest: '.claude/commands/a2a-uninstall.md' },
49
+ { src: '.claude/commands/a2a-app.md', dest: '.claude/commands/a2a-app.md' },
50
+ { src: '.claude/commands/a2a-conversations.md', dest: '.claude/commands/a2a-conversations.md' },
51
+ { src: '.claude/commands/a2a-gui.md', dest: '.claude/commands/a2a-gui.md' },
52
+ { src: '.claude/commands/a2a-skills.md', dest: '.claude/commands/a2a-skills.md' },
46
53
  // Codex agent instructions
47
54
  { src: '.codex/AGENTS.md', dest: '.codex/AGENTS.md' }
48
55
  ];