@drunkcoding/agents-and-skills 0.0.41 → 0.0.43

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.
@@ -12,7 +12,7 @@
12
12
  "name": "tech-graph",
13
13
  "source": "./plugins/tech-graph",
14
14
  "description": "6-step wizard for technical diagrams (SVG/PNG) via fireworks-tech-graph",
15
- "version": "0.0.41",
15
+ "version": "0.0.43",
16
16
  "category": "diagram",
17
17
  "keywords": [
18
18
  "diagram",
@@ -26,7 +26,7 @@
26
26
  "name": "html-effectiveness",
27
27
  "source": "./plugins/html-effectiveness",
28
28
  "description": "Generate self-contained interactive HTML reports from 20 upstream templates via a conversational agent.",
29
- "version": "0.0.41",
29
+ "version": "0.0.43",
30
30
  "category": "reports",
31
31
  "keywords": [
32
32
  "html",
@@ -41,7 +41,7 @@
41
41
  "name": "plugin-validator",
42
42
  "source": "./plugins/plugin-validator",
43
43
  "description": "Orchestrated validator for Claude Code plugins — validates skills, agents, commands, and hooks across every plugin under plugins/**.",
44
- "version": "0.0.41",
44
+ "version": "0.0.43",
45
45
  "category": "tooling",
46
46
  "keywords": [
47
47
  "validation",
@@ -57,7 +57,7 @@
57
57
  "name": "team-share",
58
58
  "source": "./plugins/team-share",
59
59
  "description": "Onboard your team with an interactive setup menu: install CodeGraph, build the Understand-Anything knowledge graph, and share Claude Code settings — run any combination, all idempotent.",
60
- "version": "0.0.41",
60
+ "version": "0.0.43",
61
61
  "category": "tooling",
62
62
  "keywords": [
63
63
  "onboarding",
@@ -73,7 +73,7 @@
73
73
  "name": "multica-tool",
74
74
  "source": "./plugins/multica-tool",
75
75
  "description": "Export, import, and sync Multica skills, agents, and squads between workspaces.",
76
- "version": "0.0.41",
76
+ "version": "0.0.43",
77
77
  "category": "workflow",
78
78
  "keywords": [
79
79
  "multica",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@drunkcoding/agents-and-skills",
3
- "version": "0.0.41",
3
+ "version": "0.0.43",
4
4
  "description": "Personal collection of Claude Code skills and agents, installable via `npx skills`.",
5
5
  "keywords": [
6
6
  "claude-code",
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "html-effectiveness",
3
3
  "displayName": "HTML Effectiveness Reports",
4
- "version": "0.0.41",
4
+ "version": "0.0.43",
5
5
  "description": "Generate self-contained interactive HTML reports from 20 upstream templates via a conversational agent.",
6
6
  "author": {
7
7
  "name": "Steven Hoang"
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "multica-tool",
3
- "version": "0.0.41",
3
+ "version": "0.0.43",
4
4
  "description": "Export, import, and sync Multica skills, agents, and squads between workspaces via the multica CLI."
5
5
  }
@@ -127,3 +127,27 @@ export const getProjectResources = (cli, id) =>
127
127
  (cli.json(["project", "resource", "list", id]) ?? []).map((r) => ({
128
128
  resource_type: r.resource_type, resource_ref: r.resource_ref, label: r.label ?? null,
129
129
  }));
130
+
131
+ export const listAutopilots = (cli) => cli.json(["autopilot", "list"]).autopilots ?? [];
132
+
133
+ // `autopilot get` wraps the record as {autopilot, collaborators, triggers} — only
134
+ // autopilot + triggers are portable; collaborators/can_write/can_manage_access are
135
+ // caller-relative and never bundled. `priority` is accepted by `autopilot
136
+ // create`/`update` but never present in this response (verified live) — kept as a
137
+ // field anyway so this starts round-tripping automatically if the API adds it.
138
+ export function getAutopilot(cli, id) {
139
+ const r = cli.json(["autopilot", "get", id]);
140
+ const a = r.autopilot;
141
+ return {
142
+ id: a.id, title: a.title, description: a.description ?? "",
143
+ execution_mode: a.execution_mode, issue_title_template: a.issue_title_template ?? null,
144
+ priority: a.priority ?? null,
145
+ project_id: a.project_id ?? null,
146
+ assignee_id: a.assignee_id, assignee_type: a.assignee_type,
147
+ subscribers: (a.subscribers ?? []).map((s) => ({ user_id: s.user_id, user_type: s.user_type })),
148
+ triggers: (r.triggers ?? []).map((t) => ({
149
+ kind: t.kind, label: t.label ?? null, enabled: !!t.enabled,
150
+ cron_expression: t.cron_expression ?? null, timezone: t.timezone ?? null,
151
+ })),
152
+ };
153
+ }
@@ -1,7 +1,7 @@
1
1
  import * as nodeFs from "node:fs";
2
2
  import { spawnSync } from "node:child_process";
3
3
  import { dirname } from "node:path";
4
- import { slugify, getSkill, getAgent, getAgentCustomEnv, getSquad, getSquadMembers, listRuntimes, listSkills, listAgents, listSquads, listProjects, getProject, getProjectResources, makeCli, realExec, requireAuth, resolveWorkspaceId } from "./lib.mjs";
4
+ import { slugify, getSkill, getAgent, getAgentCustomEnv, getSquad, getSquadMembers, listRuntimes, listSkills, listAgents, listSquads, listProjects, getProject, getProjectResources, listWorkspaceMembers, getAutopilot, makeCli, realExec, requireAuth, resolveWorkspaceId } from "./lib.mjs";
5
5
 
6
6
  const nonEmpty = (v) => v && typeof v === "object" && Object.keys(v).length > 0;
7
7
 
@@ -57,7 +57,7 @@ export function redactAgent(a) {
57
57
  };
58
58
  }
59
59
 
60
- export function buildManifest({ scope, sourceWorkspaceId, skills, agents, squads, projects }) {
60
+ export function buildManifest({ scope, sourceWorkspaceId, skills, agents, squads, projects, autopilots }) {
61
61
  const seenSkills = new Map();
62
62
  for (const s of skills) if (!seenSkills.has(s.name)) seenSkills.set(s.name, s);
63
63
  const seenAgents = new Map();
@@ -81,6 +81,11 @@ export function buildManifest({ scope, sourceWorkspaceId, skills, agents, squads
81
81
  title: p.title, file: `projects/${slugify(p.title)}.json`,
82
82
  source_id: p.source_id, lead_name: p.lead_name ?? null, lead_type: p.lead_type ?? null,
83
83
  })),
84
+ autopilots: (autopilots ?? []).map((ap) => ({
85
+ title: ap.title, file: `autopilots/${slugify(ap.title)}.json`, source_id: ap.source_id,
86
+ assignee_type: ap.assignee_type, assignee_name: ap.assignee_name,
87
+ project_title: ap.project_title, had_webhook_trigger: ap.had_webhook_trigger,
88
+ })),
84
89
  };
85
90
  }
86
91
 
@@ -133,6 +138,7 @@ export function exportResource({ cli, scope, ids, outDir, sourceWorkspaceId, fs
133
138
  const agentsById = new Map(); // id -> { raw, red, skill_names }
134
139
  const squads = [];
135
140
  const projects = [];
141
+ const autopilots = [];
136
142
  // Lazy + memoized: only fetched when an agent is actually collected (skips
137
143
  // the extra CLI call on skill-only exports).
138
144
  let providerById = null;
@@ -152,11 +158,46 @@ export function exportResource({ cli, scope, ids, outDir, sourceWorkspaceId, fs
152
158
  };
153
159
  }
154
160
 
161
+ // Collect a single autopilot: its assignee (agent, or squad + members + skills)
162
+ // and, when present, the destination-portable project title / subscriber names.
163
+ // Webhook trigger secrets (url/token) are never read into the bundle — only
164
+ // kind/label/enabled, matching the existing agent MCP/env redaction pattern.
165
+ function collectOneAutopilot(autopilotId) {
166
+ const ap = getAutopilot(cli, autopilotId);
167
+ let assignee_name = null;
168
+ if (ap.assignee_type === "agent") {
169
+ assignee_name = collectAgent(cli, ap.assignee_id, agentsById, skills, getProviderById()).raw.name;
170
+ } else if (ap.assignee_type === "squad") {
171
+ const sq = collectOneSquad(ap.assignee_id);
172
+ squads.push(sq);
173
+ assignee_name = sq.name;
174
+ }
175
+ let project_title = null;
176
+ if (ap.project_id) {
177
+ try { project_title = getProject(cli, ap.project_id).title; } catch { project_title = null; }
178
+ }
179
+ let subscriber_names = [];
180
+ if (ap.subscribers.length) {
181
+ const members = listWorkspaceMembers(cli);
182
+ subscriber_names = ap.subscribers.map((s) => members.find((m) => m.user_id === s.user_id)?.name).filter(Boolean);
183
+ }
184
+ return {
185
+ title: ap.title, source_id: ap.id, description: ap.description,
186
+ execution_mode: ap.execution_mode, issue_title_template: ap.issue_title_template,
187
+ priority: ap.priority, project_title, assignee_type: ap.assignee_type, assignee_name,
188
+ subscriber_names, had_webhook_trigger: ap.triggers.some((t) => t.kind === "webhook"),
189
+ triggers: ap.triggers.map((t) => t.kind === "webhook"
190
+ ? { kind: "webhook", label: t.label, enabled: t.enabled }
191
+ : { kind: t.kind, label: t.label, enabled: t.enabled, cron_expression: t.cron_expression, timezone: t.timezone }),
192
+ };
193
+ }
194
+
155
195
  if (scope === "skill") collectSkill(cli, ids.skillId, skills);
156
196
  else if (scope === "agent") collectAgent(cli, ids.agentId, agentsById, skills, getProviderById());
157
197
  else if (scope === "squad") squads.push(collectOneSquad(ids.squadId));
158
198
  else if (scope === "project") projects.push(collectProject(cli, ids.projectId, agentsById, skills, getProviderById()));
159
199
  else if (scope === "projects") for (const p of listProjects(cli)) projects.push(collectProject(cli, p.id, agentsById, skills, getProviderById()));
200
+ else if (scope === "autopilot") autopilots.push(collectOneAutopilot(ids.autopilotId));
160
201
  else if (scope === "all") {
161
202
  for (const s of listSkills(cli)) collectSkill(cli, s.id, skills);
162
203
  for (const a of listAgents(cli)) collectAgent(cli, a.id, agentsById, skills, getProviderById());
@@ -183,6 +224,7 @@ export function exportResource({ cli, scope, ids, outDir, sourceWorkspaceId, fs
183
224
  agents: [...agentsById.values()].map((a) => ({ name: a.raw.name, source_id: a.raw.id, source_runtime_id: a.raw.runtime_id, source_runtime_provider: a.raw.source_runtime_provider, skill_names: a.skill_names, had_secrets: a.red.hadSecrets })),
184
225
  squads,
185
226
  projects,
227
+ autopilots,
186
228
  });
187
229
 
188
230
  const warnings = [];
@@ -241,8 +283,16 @@ export function exportResource({ cli, scope, ids, outDir, sourceWorkspaceId, fs
241
283
  fs.mkdirSync(`${outDir}/projects`, { recursive: true });
242
284
  fs.writeFileSync(`${outDir}/${entry.file}`, JSON.stringify(projectByTitle.get(entry.title), null, 2));
243
285
  }
286
+ const autopilotByTitle = new Map(autopilots.map((a) => [a.title, a]));
287
+ for (const entry of manifest.autopilots) {
288
+ fs.mkdirSync(`${outDir}/autopilots`, { recursive: true });
289
+ fs.writeFileSync(`${outDir}/${entry.file}`, JSON.stringify(autopilotByTitle.get(entry.title), null, 2));
290
+ }
244
291
  fs.writeFileSync(`${outDir}/manifest.json`, JSON.stringify(manifest, null, 2));
245
- return { manifest, warnings, pruned_skills };
292
+ return {
293
+ manifest, warnings, pruned_skills,
294
+ autopilotWebhookTriggers: autopilots.filter((a) => a.had_webhook_trigger).map((a) => a.title),
295
+ };
246
296
  }
247
297
 
248
298
  function main() {
@@ -255,7 +305,7 @@ function main() {
255
305
  const workspace = get("--workspace"); // optional: source workspace name
256
306
 
257
307
  if (!scope || !out || (scope !== "all" && scope !== "projects" && !id)) {
258
- console.error("Usage: multica-export.mjs --scope <skill|agent|squad|project|projects|all> --id <id> --out <dir> [--workspace <name>] (--id not needed for --scope all|projects)");
308
+ console.error("Usage: multica-export.mjs --scope <skill|agent|squad|project|projects|autopilot|all> --id <id> --out <dir> [--workspace <name>] (--id not needed for --scope all|projects)");
259
309
  process.exit(1);
260
310
  }
261
311
 
@@ -272,8 +322,9 @@ function main() {
272
322
  else if (scope === "squad") ids.squadId = id;
273
323
  else if (scope === "project") ids.projectId = id;
274
324
  else if (scope === "projects") { /* all projects — no id */ }
325
+ else if (scope === "autopilot") ids.autopilotId = id;
275
326
  else if (scope === "all") { /* whole workspace — no id */ }
276
- else { console.error(`Unknown scope "${scope}" — use skill|agent|squad|project|projects|all`); process.exit(1); }
327
+ else { console.error(`Unknown scope "${scope}" — use skill|agent|squad|project|projects|autopilot|all`); process.exit(1); }
277
328
 
278
329
  const result = exportResource({ cli, scope, ids, outDir: out, sourceWorkspaceId, fs: nodeFs });
279
330
  console.log(JSON.stringify(result, null, 2));
@@ -1,7 +1,7 @@
1
1
  import * as nodeFs from "node:fs";
2
- import { listSkills, listAgents, listSquads, listRuntimes, listWorkspaceMembers, getSquadMembers, findByName, makeCli, realExec, requireAuth, resolveWorkspaceId, listProjects, getProjectResources, findByTitle } from "./lib.mjs";
2
+ import { listSkills, listAgents, listSquads, listRuntimes, listWorkspaceMembers, getSquadMembers, findByName, makeCli, realExec, requireAuth, resolveWorkspaceId, listProjects, getProjectResources, findByTitle, listAutopilots, getAutopilot } from "./lib.mjs";
3
3
 
4
- // User-facing selectable types are agents/squads/projects; skills follow agents.
4
+ // User-facing selectable types are agents/squads/projects/autopilots; skills follow agents.
5
5
  export function parseInclude(raw) {
6
6
  const set = new Set((raw ? raw.split(",") : ["agents", "squads"]).map((s) => s.trim()).filter(Boolean));
7
7
  if (set.has("agents")) set.add("skills");
@@ -298,6 +298,99 @@ export function importProjects({ cli, manifest, dir, agentIdMap, fs = nodeFs })
298
298
  return { idMap, created, updated, priorityUnsupported, resourcesUnsupported, leadUnresolved };
299
299
  }
300
300
 
301
+ // `autopilot create`/`update` only accept `--agent` (name or ID) — there is no
302
+ // `--squad` flag, even though the data model supports squad-assigned autopilots
303
+ // (dispatch resolves to the squad leader). A squad assignee, or an agent name not
304
+ // resolvable in this import or the destination, is reported up front so the whole
305
+ // import aborts before any write — mirroring the unmapped-runtime guard above,
306
+ // never silently dropped or reassigned to the wrong agent.
307
+ function unresolvedAutopilotAssignees({ cli, manifest, recs, agentIdMap }) {
308
+ let destAgentNames = null;
309
+ const agentResolvable = (name) => agentIdMap.has(name) || (destAgentNames ??= new Set(listAgents(cli).map((a) => a.name))).has(name);
310
+ const unresolved = [];
311
+ for (const rec of recs) {
312
+ if (rec.assignee_type === "squad") {
313
+ unresolved.push(`"${rec.title}" → squad "${rec.assignee_name}" (the multica CLI has no command to assign a squad to an autopilot)`);
314
+ } else if (!agentResolvable(rec.assignee_name)) {
315
+ unresolved.push(`"${rec.title}" → agent "${rec.assignee_name}" (not found in this import or the destination workspace)`);
316
+ }
317
+ }
318
+ return unresolved;
319
+ }
320
+
321
+ export function importAutopilots({ cli, manifest, dir, agentIdMap, fs = nodeFs }) {
322
+ const entries = manifest.autopilots ?? [];
323
+ const recs = entries.map((entry) => JSON.parse(fs.readFileSync(`${dir}/${entry.file}`, "utf8")));
324
+
325
+ const unresolved = unresolvedAutopilotAssignees({ cli, manifest, recs, agentIdMap });
326
+ if (unresolved.length) {
327
+ throw new Error(`Unresolved autopilot assignees: ${unresolved.join(", ")} — aborting before any write`);
328
+ }
329
+
330
+ const idMap = new Map();
331
+ let created = 0, updated = 0;
332
+ const projectUnresolved = [], subscribersUnresolved = [], priorityNotCaptured = [], webhookReissued = [];
333
+ const existing = listAutopilots(cli);
334
+ let destProjects = null;
335
+ const resolveProjectId = (title) => (destProjects ??= listProjects(cli)).find((p) => p.title === title)?.id ?? null;
336
+ let destMembers = null;
337
+ const memberExists = (name) => (destMembers ??= listWorkspaceMembers(cli)).some((m) => m.name === name);
338
+
339
+ for (const rec of recs) {
340
+ const common = [];
341
+ if (rec.description) common.push("--description", rec.description);
342
+ if (rec.issue_title_template) common.push("--issue-title-template", rec.issue_title_template);
343
+ // priority is never present today — the multica CLI/API accepts it on write but
344
+ // never returns it on read, so export can't capture the source's real value.
345
+ if (rec.priority && rec.priority !== "none") common.push("--priority", rec.priority);
346
+ else priorityNotCaptured.push(rec.title);
347
+
348
+ if (rec.project_title) {
349
+ const projectId = resolveProjectId(rec.project_title);
350
+ if (projectId) common.push("--project", projectId);
351
+ else projectUnresolved.push(rec.title);
352
+ }
353
+
354
+ const wantedSubscribers = rec.subscriber_names ?? [];
355
+ const resolvableSubscribers = wantedSubscribers.filter(memberExists);
356
+ subscribersUnresolved.push(...wantedSubscribers.filter((n) => !memberExists(n)).map((n) => `${rec.title}:${n}`));
357
+ if (resolvableSubscribers.length) common.push(...resolvableSubscribers.flatMap((n) => ["--subscriber", n]));
358
+
359
+ const match = findByTitle(existing, rec.title);
360
+ let id;
361
+ if (match) {
362
+ cli.run(["autopilot", "update", match.id, "--agent", rec.assignee_name, "--mode", rec.execution_mode, ...common]);
363
+ id = match.id; updated++;
364
+ } else {
365
+ const out = cli.run(["autopilot", "create", "--title", rec.title, "--agent", rec.assignee_name, "--mode", rec.execution_mode, ...common]);
366
+ id = JSON.parse(out).id;
367
+ // Always arrives paused, regardless of source status — activation is a
368
+ // deliberate follow-up action, never automatic on import.
369
+ cli.run(["autopilot", "update", id, "--status", "paused"]);
370
+ created++;
371
+ }
372
+ idMap.set(rec.title, id);
373
+
374
+ // Triggers are additive and idempotent by kind+label — a re-import never
375
+ // duplicates a trigger already present on the matched autopilot. Webhook
376
+ // triggers are always reissued fresh (new secret), never copied from the bundle.
377
+ const existingTriggers = match ? getAutopilot(cli, id).triggers : [];
378
+ const present = new Set(existingTriggers.map((t) => `${t.kind}:${t.label ?? ""}`));
379
+ for (const t of rec.triggers ?? []) {
380
+ if (present.has(`${t.kind}:${t.label ?? ""}`)) continue;
381
+ const flags = ["--kind", t.kind];
382
+ if (t.kind === "schedule") {
383
+ flags.push("--cron", t.cron_expression);
384
+ if (t.timezone) flags.push("--timezone", t.timezone);
385
+ }
386
+ if (t.label) flags.push("--label", t.label);
387
+ cli.run(["autopilot", "trigger-add", id, ...flags]);
388
+ if (t.kind === "webhook") webhookReissued.push(rec.title);
389
+ }
390
+ }
391
+ return { idMap, created, updated, projectUnresolved, subscribersUnresolved, priorityNotCaptured, webhookReissued };
392
+ }
393
+
301
394
  export function collectSourceRuntimes(manifest) {
302
395
  return [...new Set((manifest.agents ?? []).map((a) => a.source_runtime_id).filter(Boolean))];
303
396
  }
@@ -380,15 +473,21 @@ export function importBundle({ cli, dir, runtimeMap, include, fs = nodeFs }) {
380
473
  projectRes = importProjects({ cli, manifest, dir, agentIdMap: agentRes.idMap, fs });
381
474
  }
382
475
 
476
+ let autopilotRes = { idMap: new Map(), created: 0, updated: 0, projectUnresolved: [], subscribersUnresolved: [], priorityNotCaptured: [], webhookReissued: [] };
477
+ if (inc.has("autopilots")) {
478
+ autopilotRes = importAutopilots({ cli, manifest, dir, agentIdMap: agentRes.idMap, fs });
479
+ }
480
+
383
481
  return {
384
482
  include: [...inc],
385
- created: { skills: skillRes.created, agents: agentRes.created, squads: squadsCreated, projects: projectRes.created },
386
- updated: { skills: skillRes.updated, agents: agentRes.updated, squads: squadsUpdated, projects: projectRes.updated },
483
+ created: { skills: skillRes.created, agents: agentRes.created, squads: squadsCreated, projects: projectRes.created, autopilots: autopilotRes.created },
484
+ updated: { skills: skillRes.updated, agents: agentRes.updated, squads: squadsUpdated, projects: projectRes.updated, autopilots: autopilotRes.updated },
387
485
  mentionsRewritten: mentionRes.updated,
388
486
  skillIdMap: Object.fromEntries(skillRes.idMap),
389
487
  agentIdMap: Object.fromEntries(agentRes.idMap),
390
488
  squadIdMap: Object.fromEntries(squadIdMap),
391
489
  projectIdMap: Object.fromEntries(projectRes.idMap),
490
+ autopilotIdMap: Object.fromEntries(autopilotRes.idMap),
392
491
  secretsReminder: (manifest.agents ?? []).filter((a) => a.had_secrets).map((a) => a.name),
393
492
  secretsApplyFailures: agentRes.secretsApplyFailures,
394
493
  avatarApplyFailures: agentRes.avatarApplyFailures,
@@ -399,6 +498,10 @@ export function importBundle({ cli, dir, runtimeMap, include, fs = nodeFs }) {
399
498
  priorityUnsupported: projectRes.priorityUnsupported,
400
499
  resourcesUnsupported: projectRes.resourcesUnsupported,
401
500
  leadUnresolved: projectRes.leadUnresolved,
501
+ autopilotProjectUnresolved: autopilotRes.projectUnresolved,
502
+ autopilotSubscribersUnresolved: autopilotRes.subscribersUnresolved,
503
+ autopilotPriorityNotCaptured: autopilotRes.priorityNotCaptured,
504
+ autopilotWebhookReissued: autopilotRes.webhookReissued,
402
505
  };
403
506
  }
404
507
 
@@ -406,12 +509,13 @@ export function preflight({ cli, dir, runtimeMap, include, fs = nodeFs }) {
406
509
  const inc = include ?? new Set(["skills", "agents", "squads"]);
407
510
  const manifest = JSON.parse(fs.readFileSync(`${dir}/manifest.json`, "utf8"));
408
511
  const count = (k) => (manifest[k] ?? []).length;
409
- const bundle = { skills: count("skills"), agents: count("agents"), squads: count("squads"), projects: count("projects") };
512
+ const bundle = { skills: count("skills"), agents: count("agents"), squads: count("squads"), projects: count("projects"), autopilots: count("autopilots") };
410
513
  const willImport = {
411
514
  skills: inc.has("skills") ? bundle.skills : 0,
412
515
  agents: inc.has("agents") ? bundle.agents : 0,
413
516
  squads: inc.has("squads") ? bundle.squads : 0,
414
517
  projects: inc.has("projects") ? bundle.projects : 0,
518
+ autopilots: inc.has("autopilots") ? bundle.autopilots : 0,
415
519
  };
416
520
 
417
521
  const incompatibilities = [];
@@ -448,6 +552,33 @@ export function preflight({ cli, dir, runtimeMap, include, fs = nodeFs }) {
448
552
  }
449
553
  }
450
554
 
555
+ if (inc.has("autopilots")) {
556
+ const bundleAgentNames = new Set((manifest.agents ?? []).map((a) => a.name));
557
+ let destAgentNames = null;
558
+ const agentAvailable = (name) => (inc.has("agents") && bundleAgentNames.has(name))
559
+ || (destAgentNames ??= new Set(listAgents(cli).map((a) => a.name))).has(name);
560
+ let destProjectTitles = null;
561
+ const projectAvailable = (title) => (destProjectTitles ??= new Set(listProjects(cli).map((p) => p.title))).has(title);
562
+
563
+ for (const entry of manifest.autopilots ?? []) {
564
+ const rec = JSON.parse(fs.readFileSync(`${dir}/${entry.file}`, "utf8"));
565
+ if (rec.assignee_type === "squad") {
566
+ incompatibilities.push({ type: "autopilot-squad-assignee-unsupported", detail: `${rec.title} → squad "${rec.assignee_name}" (the multica CLI has no command to assign a squad to an autopilot)` });
567
+ } else if (!agentAvailable(rec.assignee_name)) {
568
+ incompatibilities.push({ type: "autopilot-assignee-missing", detail: `${rec.title} → agent "${rec.assignee_name}" (ensure this agent exists in the destination or is included in this import)` });
569
+ }
570
+ if (!rec.priority) {
571
+ incompatibilities.push({ type: "autopilot-priority-not-captured", detail: `${rec.title} (the multica CLI/API never returns an autopilot's priority, so export could not capture it)` });
572
+ }
573
+ if (rec.project_title && !projectAvailable(rec.project_title)) {
574
+ incompatibilities.push({ type: "autopilot-project-missing", detail: `${rec.title} → project "${rec.project_title}" (not found in the destination)` });
575
+ }
576
+ if (rec.had_webhook_trigger) {
577
+ incompatibilities.push({ type: "autopilot-webhook-reissued", detail: `${rec.title} (webhook trigger will get a newly issued URL — the old one never travels)` });
578
+ }
579
+ }
580
+ }
581
+
451
582
  const secretsReminder = (manifest.agents ?? []).filter((a) => a.had_secrets).map((a) => a.name);
452
583
  return { bundle, willImport, runtimes, incompatibilities, secretsReminder };
453
584
  }
@@ -1,7 +1,7 @@
1
1
  import * as nodeFs from "node:fs";
2
2
  import * as os from "node:os";
3
3
  import * as path from "node:path";
4
- import { makeCli, resolveWorkspaceId, findByName, findByTitle, listSkills, listAgents, listSquads, listProjects, realExec, requireAuth } from "./lib.mjs";
4
+ import { makeCli, resolveWorkspaceId, findByName, findByTitle, listSkills, listAgents, listSquads, listProjects, listAutopilots, realExec, requireAuth } from "./lib.mjs";
5
5
  import { exportResource } from "./multica-export.mjs";
6
6
  import { importBundle } from "./multica-import.mjs";
7
7
 
@@ -11,8 +11,13 @@ export function resolveScopeId(cli, type, name) {
11
11
  if (!match) throw new Error(`Unknown project "${name}" in source workspace`);
12
12
  return { scope: "project", ids: { projectId: match.id } };
13
13
  }
14
+ if (type === "autopilot") {
15
+ const match = findByTitle(listAutopilots(cli), name);
16
+ if (!match) throw new Error(`Unknown autopilot "${name}" in source workspace`);
17
+ return { scope: "autopilot", ids: { autopilotId: match.id } };
18
+ }
14
19
  const lists = { skill: listSkills, agent: listAgents, squad: listSquads };
15
- if (!lists[type]) throw new Error(`Unknown type "${type}" (skill|agent|squad|project)`);
20
+ if (!lists[type]) throw new Error(`Unknown type "${type}" (skill|agent|squad|project|autopilot)`);
16
21
  const match = findByName(lists[type](cli), name);
17
22
  if (!match) throw new Error(`Unknown ${type} "${name}" in source workspace`);
18
23
  const key = { skill: "skillId", agent: "agentId", squad: "squadId" }[type];
@@ -28,7 +33,7 @@ export function sync({ exec, type, name, srcWsName, destWsName, tmpDir, runtimeM
28
33
 
29
34
  const { scope, ids } = resolveScopeId(srcCli, type, name);
30
35
  exportResource({ cli: srcCli, scope, ids, outDir: tmpDir, sourceWorkspaceId: srcId, fs });
31
- const includeByType = { skill: ["skills"], agent: ["agents"], squad: ["agents", "squads"], project: ["agents", "projects"] };
36
+ const includeByType = { skill: ["skills"], agent: ["agents"], squad: ["agents", "squads"], project: ["agents", "projects"], autopilot: ["agents", "squads", "autopilots"] };
32
37
  const include = new Set(includeByType[type] ?? ["agents", "squads"]);
33
38
  if (include.has("agents")) include.add("skills");
34
39
  return importBundle({ cli: destCli, dir: tmpDir, runtimeMap, include, fs });
@@ -6,7 +6,7 @@ allowed-tools: Bash, Read
6
6
 
7
7
  # export
8
8
 
9
- Export a Multica resource (skill, agent, or squad) to a local bundle directory.
9
+ Export a Multica resource (skill, agent, squad, project, or autopilot) to a local bundle directory.
10
10
 
11
11
  ## Step 1 — Verify authentication
12
12
 
@@ -20,7 +20,7 @@ If `multica login` is required, surface that message verbatim and stop.
20
20
 
21
21
  ## Step 2 — Determine scope and resource ID
22
22
 
23
- If the user named a specific resource and type (`skill`, `agent`, `squad`, or `project`), use those directly.
23
+ If the user named a specific resource and type (`skill`, `agent`, `squad`, `project`, or `autopilot`), use those directly.
24
24
 
25
25
  Otherwise, list available resources for the chosen type and present a pick list:
26
26
 
@@ -32,25 +32,39 @@ Ask the user to select a resource by name. Resolve its `id` from the list output
32
32
 
33
33
  ## Step 3 — Determine output directory
34
34
 
35
- If the user specified an output directory, use it. Otherwise default to:
35
+ If the user specified an output directory, use it verbatim. Otherwise default to a workspace-rooted path.
36
36
 
37
+ First resolve `<workspace-name>`:
38
+
39
+ - If the user named a source workspace (the value you would pass as `--workspace <name>`), use that name.
40
+ - Otherwise, read the current default workspace's name:
41
+
42
+ ```bash
43
+ multica workspace get --output json
37
44
  ```
38
- ./multica-export-<slug>-<type>
39
- ```
40
45
 
41
- where `<slug>` is a lowercased, hyphenated form of the resource name.
46
+ and take its `.name`.
47
+
48
+ Slugify the resolved name for filesystem safety — lowercase it, replace each run of non-`[a-z0-9]` characters with a single `-`, and trim leading/trailing `-` (the same rule the scripts use internally).
49
+
50
+ Then construct the default directory by scope:
51
+
52
+ - `all` or `projects` (whole workspace) → `export/<workspace-name>`
53
+ - a single resource (`skill`, `agent`, `squad`, `project`, or `autopilot`) → `export/<workspace-name>/<slug>-<type>`, where `<slug>` is the slugified resource name and `<type>` is the resource type.
54
+
55
+ Examples: `export all from mx-workspace` → `export/mx-workspace`; `export skill "Foo Bar" from mx-workspace` → `export/mx-workspace/foo-bar-skill`.
42
56
 
43
57
  ## Step 4 — Run the export
44
58
 
45
59
  ```bash
46
60
  node "${CLAUDE_PLUGIN_ROOT}/scripts/multica-export.mjs" \
47
- --scope <skill|agent|squad|project|projects|all> \
61
+ --scope <skill|agent|squad|project|projects|autopilot|all> \
48
62
  --id <id> \
49
63
  --out <dir> \
50
64
  [--workspace <workspace-name>]
51
65
  ```
52
66
 
53
- `--id` is required for `skill`, `agent`, `squad`, and `project` (a single named resource); it is **not needed** for `projects` (every project in the workspace) or `all` (the entire workspace).
67
+ `--id` is required for `skill`, `agent`, `squad`, `project`, and `autopilot` (a single named resource); it is **not needed** for `projects` (every project in the workspace) or `all` (the entire workspace). `all` does **not** include autopilots — an autopilot is always exported explicitly, by name, never auto-bundled.
54
68
 
55
69
  Pass `--scope all` (with no `--id`) to export the **entire workspace** — every skill, agent, squad, and project — into one flat, deduped bundle. A skill or agent shared across many agents/squads is written exactly once and referenced by name.
56
70
 
@@ -60,6 +74,8 @@ The script writes `manifest.json`, skill `SKILL.md` files, agent JSON files, and
60
74
 
61
75
  Avatars are captured automatically: an agent's uploaded-image avatar is downloaded into the bundle (`agents/<slug>.avatar.<ext>`) and referenced by `avatar_file`; emoji avatars (agents and squads) and a squad's avatar are recorded as the `avatar_url` string.
62
76
 
77
+ Exporting `--scope autopilot` bundles the autopilot's **assignee** so the bundle is self-contained — an agent assignee (and its skills), or a squad assignee (its members, their skills, and the squad itself). It also captures the schedule and webhook triggers, the target project's **title** (not its ID — resolved by name on import) when one is set, and human subscribers' **names** (not their IDs). A webhook trigger's secret (URL/token) is **never** written to the bundle — only that it exists (its label); a fresh secret is issued on import.
78
+
63
79
  ## Step 5 — Report results
64
80
 
65
81
  Parse the JSON output from the script and report:
@@ -68,3 +84,4 @@ Parse the JSON output from the script and report:
68
84
  - Count of skills, agents, squads, and projects exported.
69
85
  - If `pruned_skills` is non-empty, note it: "Pruned N orphan skill(s) not linked to any agent: `<name>`, …" (these are standalone workspace skills that no exported agent references — only `--scope all` produces them).
70
86
  - If `warnings` is non-empty, surface every agent name verbatim with this message: "WARNING: the following agents' exported files contain custom environment variables or MCP config in PLAINTEXT — treat the export directory as sensitive (avoid committing it to a public repo, restrict file permissions, delete it once the import is done): `<agent-name>`."
87
+ - If `autopilotWebhookTriggers` is non-empty, surface every autopilot title verbatim with: "NOTE: the following autopilots have a webhook trigger — its secret was NOT exported; a newly issued URL will be created on import: `<autopilot-title>`."
@@ -8,19 +8,24 @@ allowed-tools: Bash, Read
8
8
 
9
9
  Import a local Multica bundle (produced by the export skill) into a target workspace.
10
10
 
11
- ## Step 1 — Confirm the target workspace
11
+ ## Step 1 — Determine the target workspace
12
12
 
13
- Ask the user to confirm the name of the target workspace if not already stated. You will need the exact workspace name as registered in Multica.
13
+ You need the exact workspace name as registered in Multica for `--workspace` in the steps below.
14
+
15
+ - If the user named a target workspace, use it.
16
+ - If the user did **not** name one, default to the **basename of the import folder** — e.g. importing from `export/mx-workspace` defaults the target workspace to `mx-workspace`. State the inferred workspace name to the user before continuing.
17
+
18
+ No existence check is needed here: the Step 2 dry-run fails with `Unknown workspace "<name>"` if the inferred workspace is not present in the target account, at which point ask the user for the correct name.
14
19
 
15
20
  ## Step 2 — Pre-flight (dry run)
16
21
 
17
- Before writing anything, run the import script with `--dry-run` to preview the bundle. Preview against the **full** set (`--include agents,squads,projects`) regardless of what the user ultimately chooses to import — incompatibilities for a type (e.g. project caveats) are only computed when that type is included, so previewing everything up front is what lets the user see a project's cost before deciding whether to opt it in:
22
+ Before writing anything, run the import script with `--dry-run` to preview the bundle. Preview against the **full** set (`--include agents,squads,projects,autopilots`) regardless of what the user ultimately chooses to import — incompatibilities for a type (e.g. project caveats) are only computed when that type is included, so previewing everything up front is what lets the user see a project's or autopilot's cost before deciding whether to opt it in:
18
23
 
19
24
  ```bash
20
25
  node "${CLAUDE_PLUGIN_ROOT}/scripts/multica-import.mjs" \
21
26
  --dir <folder> \
22
27
  --workspace <workspace-name> \
23
- --include agents,squads,projects \
28
+ --include agents,squads,projects,autopilots \
24
29
  [--runtime-map <srcId1=dstId1,srcId2=dstId2,...>] \
25
30
  --dry-run
26
31
  ```
@@ -29,9 +34,9 @@ Present the `bundle` and `willImport` counts, and every entry in `incompatibilit
29
34
 
30
35
  ## Step 3 — Select which types to import
31
36
 
32
- Ask the user which of `agents`, `squads`, `projects` they want to import. **Default is `agents,squads`** — `projects` requires explicit opt-in.
37
+ Ask the user which of `agents`, `squads`, `projects`, `autopilots` they want to import. **Default is `agents,squads`** — `projects` and `autopilots` each require explicit opt-in.
33
38
 
34
- If the pre-flight's `incompatibilities` list contains an `unmapped-runtime` entry, tell the user it must be resolved with `--runtime-map` before the real import — the import **aborts** otherwise (see Step 4 below). Other incompatibility kinds are informational only and applied best-effort, fixed up afterward in the Multica UI: `priority-not-settable` (priority isn't settable via the CLI, so it never round-trips), `resource-not-portable` (only `github_repo` resources are portable — other resource kinds are dropped), and `lead-agent-missing` (a non-agent lead isn't re-applied to the imported project).
39
+ If the pre-flight's `incompatibilities` list contains an `unmapped-runtime` or `autopilot-squad-assignee-unsupported` entry, tell the user it **aborts the import before any write** (see Step 4 below) — `unmapped-runtime` needs `--runtime-map`; a squad-assigned autopilot has no fix, since the multica CLI has no command to assign a squad to an autopilot (only `--agent`) drop that autopilot from the bundle or recreate its assignment by hand after importing the squad. An `autopilot-assignee-missing` entry also aborts unless resolved by including `agents` or ensuring that agent already exists in the destination. Other incompatibility kinds are informational only and applied best-effort, fixed up afterward in the Multica UI: `priority-not-settable` (project priority isn't settable via the CLI, so it never round-trips), `resource-not-portable` (only `github_repo` resources are portable — other resource kinds are dropped), `lead-agent-missing` (a non-agent lead isn't re-applied to the imported project), `autopilot-priority-not-captured` (the multica CLI/API never returns an autopilot's priority, so it can't be captured or restored at all — a known platform gap, not a bug in this tool), `autopilot-project-missing` (the autopilot's target project isn't found by title in the destination — it's created/updated with no project set), and `autopilot-webhook-reissued` (informational — the webhook trigger always gets a freshly issued URL).
35
40
 
36
41
  ## Step 4 — Run the import (auto-mapping first)
37
42
 
@@ -41,7 +46,7 @@ Each exported agent record carries its source runtime's `provider` (e.g. `claude
41
46
  node "${CLAUDE_PLUGIN_ROOT}/scripts/multica-import.mjs" \
42
47
  --dir <folder> \
43
48
  --workspace <workspace-name> \
44
- --include <agents,squads,projects>
49
+ --include <agents,squads,projects,autopilots>
45
50
  ```
46
51
 
47
52
  If it aborts with `Unmapped runtimes: ...` (0 or 2+ runtimes share that provider in the target workspace, or the bundle predates provider capture), resolve manually:
@@ -57,23 +62,28 @@ Ask the user to pick a matching target runtime by name or ID for each unmapped `
57
62
  node "${CLAUDE_PLUGIN_ROOT}/scripts/multica-import.mjs" \
58
63
  --dir <folder> \
59
64
  --workspace <workspace-name> \
60
- --include <agents,squads,projects> \
65
+ --include <agents,squads,projects,autopilots> \
61
66
  --runtime-map <srcId1=dstId1,srcId2=dstId2,...>
62
67
  ```
63
68
 
69
+ If it instead aborts with `Unresolved autopilot assignees: ...`, that is not fixable with `--runtime-map` — either the autopilot is squad-assigned (no CLI support, see Step 3) or its assignee agent isn't available in this import or the destination; ensure `agents` is included, or that the agent already exists in the destination workspace under the same name, then re-run.
70
+
64
71
  The import also rewrites any `mention://agent/<id>` link inside squad and agent instructions (e.g. `[@dev-backend](mention://agent/<id>)`) from the source agent's id to its new id in the target workspace — the CLI does this automatically for every agent captured in the bundle; no extra flag needed. Mentions pointing to an agent outside the bundle are left untouched.
65
72
 
66
73
  Instructions are read back from each resource's sibling `.md` (`agents/<slug>.md`, `squads/<slug>.md`) when present — editing that Markdown is the supported way to review and enhance an agent's or squad's instructions before import. Older bundles that predate the split (instructions inline in the JSON, no `instructions_file`) still import unchanged.
67
74
 
68
75
  Avatars are restored automatically, but **only when the target resource has none** — an existing agent or squad that already carries an avatar is never overwritten. New agents get their bundled image re-uploaded; new squads get their `avatar_url` (emoji or URL) set. An agent whose source avatar was an emoji can't be restored (the CLI has no emoji setter for agents) and is reported as unsupported.
69
76
 
77
+ Importing `autopilots` always creates a brand-new autopilot **paused**, regardless of the source's status — activation is left as a deliberate follow-up action, never automatic. Re-importing an already-imported autopilot updates it by title (never duplicates) but leaves its current status alone. Its triggers are upserted by kind+label — a re-import never adds a duplicate trigger — and a webhook trigger always gets a freshly issued URL, never the source's.
78
+
70
79
  ## Step 5 — Report results
71
80
 
72
81
  Parse the JSON output and report:
73
82
 
74
- - Created and updated counts for skills, agents, squads, and projects (`created.projects`/`updated.projects`).
83
+ - Created and updated counts for skills, agents, squads, projects, and autopilots (`created.autopilots`/`updated.autopilots`).
75
84
  - Name-to-ID maps for skills and agents (`skillIdMap`, `agentIdMap`).
76
85
  - `squadIdMap`: name-to-ID map for every squad imported.
86
+ - `autopilotIdMap`: name-to-ID map for every autopilot imported.
77
87
  - `mentionsRewritten`: how many agents had an agent-mention link rewritten to its new id.
78
88
  - If `leadUnresolved`, `priorityUnsupported`, `resourcesUnsupported`, or `squadsSkipped` is non-empty, surface each entry verbatim as an "applied best-effort; adjust in the UI" note — e.g. "NOTE: applied best-effort; adjust in the UI — `<entry>`."
79
89
  - If `secretsReminder` is non-empty, surface every agent name verbatim with: "WARNING: the following agents' bundle files contained custom environment variables or MCP config in PLAINTEXT — the source export directory should be treated as sensitive: `<agent-name>`."
@@ -82,3 +92,7 @@ Parse the JSON output and report:
82
92
  - If `avatarUnsupported` is non-empty, surface every agent name verbatim with: "NOTE: the following agents had an emoji avatar at the source, which the CLI cannot set on an agent — set it manually in the Multica UI: `<agent-name>`."
83
93
  - If `permissionApplyFailures` is non-empty, surface every agent name verbatim with: "WARNING: member-specific sharing failed to apply for the following agents — set their invocation permissions manually in the Multica UI: `<agent-name>`."
84
94
  - If `permissionUnsupported` is non-empty, surface every agent name verbatim with: "NOTE: the following agents were shared with specific members at the source, but none of those users exist in the target workspace — re-share manually if needed: `<agent-name>`."
95
+ - If `autopilotProjectUnresolved` is non-empty, surface every autopilot title verbatim with: "NOTE: the following autopilots' target project could not be matched by title in the target workspace — created/updated with no project set: `<autopilot-title>`."
96
+ - If `autopilotSubscribersUnresolved` is non-empty, surface every `<title>:<member-name>` entry verbatim with: "NOTE: the following autopilot subscribers could not be matched by name in the target workspace — skipped: `<entry>`."
97
+ - If `autopilotPriorityNotCaptured` is non-empty, surface every autopilot title verbatim with: "NOTE: the following autopilots' priority could not be captured from the source (the multica CLI/API never returns it) — a known platform gap, not something this tool can fix: `<autopilot-title>`."
98
+ - If `autopilotWebhookReissued` is non-empty, surface every autopilot title verbatim with: "NOTE: the following autopilots had a webhook trigger created with a freshly issued URL — the previous URL does not carry over: `<autopilot-title>`."
@@ -16,9 +16,9 @@ Expect the user's request in the form:
16
16
  sync <type> <name> from <src-ws> to <dest-ws>
17
17
  ```
18
18
 
19
- Where `<type>` is `skill`, `agent`, `squad`, or `project`; `<name>` is the resource name (for `project`, its **title**); `<src-ws>` and `<dest-ws>` are workspace names registered in Multica.
19
+ Where `<type>` is `skill`, `agent`, `squad`, `project`, or `autopilot`; `<name>` is the resource name (for `project` and `autopilot`, its **title**); `<src-ws>` and `<dest-ws>` are workspace names registered in Multica.
20
20
 
21
- Projects are resolved by title, not ID, e.g. `multica-sync.mjs project "<title>" from <src-ws> <dest-ws>` — the project's lead agent is synced alongside it.
21
+ Projects and autopilots are resolved by title, not ID, e.g. `multica-sync.mjs project "<title>" from <src-ws> <dest-ws>` — the project's lead agent is synced alongside it. `multica-sync.mjs autopilot "<title>" from <src-ws> <dest-ws>` syncs the autopilot's assignee (agent, or squad + members) alongside it; a squad-assigned autopilot aborts (see the import skill — the multica CLI has no command to assign a squad to an autopilot).
22
22
 
23
23
  ## Step 2 — Run the sync (auto-mapping first)
24
24
 
@@ -49,9 +49,12 @@ The script exports to a temporary directory, imports into the destination worksp
49
49
 
50
50
  Parse the JSON output and report:
51
51
 
52
- - Created and updated counts for skills, agents, squads, and projects.
52
+ - Created and updated counts for skills, agents, squads, projects, and autopilots.
53
53
  - Name-to-ID maps (`skillIdMap`, `agentIdMap`).
54
54
  - `squadIdMap`: name-to-ID map for every squad synced.
55
+ - `autopilotIdMap`: name-to-ID map for every autopilot synced. Importing always creates a new autopilot **paused**, regardless of source status; a re-sync updates the existing one by title without reactivating or duplicating it, and never re-adds a trigger already present.
56
+ - If `autopilotProjectUnresolved`, `autopilotSubscribersUnresolved`, or `autopilotPriorityNotCaptured` is non-empty, surface each entry verbatim as an "applied best-effort" note (project/subscribers skipped when unmatched by name in the destination; priority can never be captured — a platform gap, not a bug here).
57
+ - If `autopilotWebhookReissued` is non-empty, surface every autopilot title verbatim with: "NOTE: the following autopilots had a webhook trigger created with a freshly issued URL in the destination — the previous URL does not carry over: `<autopilot-title>`."
55
58
  - If `secretsReminder` is non-empty, surface every agent name verbatim with: "WARNING: the following agents' bundle files contained custom environment variables or MCP config in PLAINTEXT — the temporary export directory (already cleaned up) briefly held these secrets in plaintext: `<agent-name>`."
56
59
  - If `secretsApplyFailures` is non-empty, surface every agent name verbatim with: "WARNING: mcp_config or custom_env failed to apply to the following agents during sync (the agent itself was still created/updated) — set them manually in the Multica UI: `<agent-name>`."
57
60
  - If `avatarApplyFailures` is non-empty, surface every agent name verbatim with: "WARNING: the avatar image failed to upload for the following agents — set it manually in the destination workspace: `<agent-name>`."
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "plugin-validator",
3
3
  "displayName": "Plugin Validator",
4
- "version": "0.0.41",
4
+ "version": "0.0.43",
5
5
  "description": "Orchestrated validator for Claude Code plugins — validates skills, agents, commands, and hooks across every plugin under plugins/**.",
6
6
  "author": {
7
7
  "name": "Steven Hoang"
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "team-share",
3
3
  "displayName": "Team Share",
4
- "version": "0.0.41",
4
+ "version": "0.0.43",
5
5
  "description": "Onboard your team with an interactive setup menu: install CodeGraph, build the Understand-Anything knowledge graph, and share Claude Code settings — run any combination, all idempotent.",
6
6
  "author": {
7
7
  "name": "Steven Hoang"
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tech-graph",
3
- "version": "0.0.41",
3
+ "version": "0.0.43",
4
4
  "description": "Step-by-step wizard for generating technical diagrams as SVG+PNG.",
5
5
  "author": {
6
6
  "name": "steven"