@c4a/context-cli 0.5.35-beta.3 → 0.5.38-beta.1

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.
@@ -34,6 +34,8 @@ const repoRoot = resolve(pkgRoot, "../..");
34
34
  const PLUGINS_ROOT = process.env.C4A_PLUGINS_ROOT
35
35
  ? resolve(process.env.C4A_PLUGINS_ROOT)
36
36
  : resolve(repoRoot, "c4a-plugins");
37
+ const MARKETPLACE_NAME = "c4a";
38
+ const PLUGIN_NAME = "context";
37
39
 
38
40
  interface CommandSource {
39
41
  slug: string;
@@ -601,29 +603,29 @@ async function ensurePluginsRoot(): Promise<void> {
601
603
 
602
604
  async function writeMarketplaceManifests(version: string): Promise<void> {
603
605
  const claudeMarketplace = {
604
- name: "context",
606
+ name: MARKETPLACE_NAME,
605
607
  owner: { name: "c4a" },
606
608
  plugins: [{
607
- name: "context",
609
+ name: PLUGIN_NAME,
608
610
  source: "./claude",
609
611
  description: "Context For AI — local knowledge workspace. Capture docs, extract code structure, compile into an interlinked wiki with source-traced facts.",
610
612
  }],
611
613
  };
612
614
  const cursorMarketplace = {
613
- name: "context",
615
+ name: MARKETPLACE_NAME,
614
616
  owner: { name: "Context4AI", email: "support@context4ai.dev" },
615
617
  metadata: { description: "C4A Context plugin marketplace" },
616
618
  plugins: [{
617
- name: "context",
619
+ name: PLUGIN_NAME,
618
620
  source: "./cursor",
619
621
  description: "Turn project sources into a local, source-linked knowledge workspace your agent can maintain and query.",
620
622
  }],
621
623
  };
622
624
  const codexMarketplace = {
623
- name: "context",
625
+ name: MARKETPLACE_NAME,
624
626
  interface: { displayName: "C4A Marketplace" },
625
627
  plugins: [{
626
- name: "context",
628
+ name: PLUGIN_NAME,
627
629
  source: { source: "local", path: "./codex" },
628
630
  policy: { installation: "AVAILABLE", authentication: "ON_INSTALL" },
629
631
  category: "Productivity",