trantor 0.17.18 → 0.17.19

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.
@@ -6,14 +6,14 @@
6
6
  },
7
7
  "metadata": {
8
8
  "description": "Trantor — the hub-world for AI agent crews: live message bus, presence, project Kanban/flow board + context-handoff for independent AI coding agents (Claude, Codex, Gemini, …)",
9
- "version": "0.17.18"
9
+ "version": "0.17.19"
10
10
  },
11
11
  "plugins": [
12
12
  {
13
13
  "name": "trantor",
14
14
  "source": "./",
15
15
  "description": "The hub-world for AI agent crews. Say \"fire up the crew\" and Claude becomes the architect: a plan-aware Advisor routes the work (solo / cheap inline calls / live crew of Codex, Gemini, Kimi & DeepSeek in their own terminal windows), a Kanban/flow command center with a testing gate tracks it, and an economics brain (Scrooge) keeps the receipts. Includes the relay MCP, a SessionStart auto-discovery hook, and a PreCompact context-handoff so a fresh session can take over a full window instead of compacting.",
16
- "version": "0.17.18",
16
+ "version": "0.17.19",
17
17
  "author": {
18
18
  "name": "Sasha Bogojevic"
19
19
  },
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "trantor",
3
- "version": "0.17.18",
3
+ "version": "0.17.19",
4
4
  "description": "Trantor — the hub-world for AI agent crews: live message bus, presence, project Kanban/flow board + crew orchestration for independent AI coding agents (Claude, Codex, Gemini, Kimi, DeepSeek)",
5
5
  "mcpServers": {
6
6
  "relay": {
@@ -27,6 +27,7 @@ const me = `${hostId()}:${project}`;
27
27
 
28
28
  const themeOf = (s) => {
29
29
  let m;
30
+ if ((m = s.match(/^release:\s*v?(\d+\.\d+\.\d+)/i))) return "v" + m[1]; // release: v0.17.15 → v0.17.15 (one card per version)
30
31
  if ((m = s.match(/^[a-z]+\(([^)]+)\)\s*:/i))) return m[1].trim(); // feat(engine): → engine
31
32
  if ((m = s.match(/^([A-Za-z][\w &+/.]*?)\s*:/))) return m[1].trim(); // "Landing: …" → Landing
32
33
  if ((m = s.match(/^([A-Za-z][\w.+-]*)/))) return m[1]; // first word
@@ -57,7 +58,11 @@ const ents = [...groups.entries()].sort((a, b) => a[1].latest - b[1].latest);
57
58
  let posted = 0, skipped = 0;
58
59
  for (const [theme, g] of ents) {
59
60
  const latest = g.commits.sort((a, b) => b.ts - a.ts)[0];
60
- const subj = latest.subject.replace(/^[a-z]+\([^)]*\)\s*:\s*/i, "").replace(/^[A-Za-z][\w &+/.]*?:\s*/, "").slice(0, 70);
61
+ const subj = latest.subject
62
+ .replace(/^[a-z]+\([^)]*\)\s*:\s*/i, "") // strip feat(scope):
63
+ .replace(/^[A-Za-z][\w &+/.]*?:\s*/, "") // strip "release:" / "Landing:"
64
+ .replace(/^v?\d+\.\d+\.\d+\s*[—–-]\s*/, "") // strip a leading "v0.17.15 — " (release version dup)
65
+ .slice(0, 70);
61
66
  const title = `${theme}: ${subj}${g.commits.length > 1 ? ` (+${g.commits.length - 1} more)` : ""}`.slice(0, 190);
62
67
  if (existing.has(title)) { skipped++; continue; }
63
68
  if (dry) { console.log(`+ [${new Date(g.latest).toISOString().slice(0, 10)}] ${theme.padEnd(20)} ${g.commits.length}c ${title.slice(0, 64)}`); posted++; continue; }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "trantor",
3
- "version": "0.17.18",
3
+ "version": "0.17.19",
4
4
  "type": "module",
5
5
  "bin": {
6
6
  "trantor": "bin/cli.mjs"