@dugleelabs/copair 1.4.5 → 1.6.0

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/README.md CHANGED
@@ -9,6 +9,13 @@
9
9
  <a href="https://nodejs.org"><img src="https://img.shields.io/node/v/@dugleelabs/copair" alt="node version"></a>
10
10
  </p>
11
11
 
12
+ <p align="center">
13
+ <a href="https://copair.dugleelabs.io">Website</a> •
14
+ <a href="https://github.com/dugleelabs/copair/releases">Releases</a> •
15
+ <a href="docs/configuration.md">Docs</a> •
16
+ <a href="https://github.com/dugleelabs/copair/issues">Issues</a>
17
+ </p>
18
+
12
19
  A model-agnostic AI coding agent for the terminal. Works like Claude Code but supports any LLM provider — commercial APIs, open source models, or self-hosted instances.
13
20
 
14
21
  ```
@@ -236,7 +243,7 @@ plugins:
236
243
  - "@scope/my-plugin-package"
237
244
  ```
238
245
 
239
- **Copair Pro** is a commercial edition built on top of the open-source core, offering additional features for teams and enterprises.
246
+ **[Copair Pro](https://copair.dugleelabs.io)** is a commercial edition built on top of the open-source core, offering additional features for teams and enterprises.
240
247
 
241
248
  ## Programmatic API
242
249
 
package/dist/api.d.ts CHANGED
@@ -569,6 +569,13 @@ interface CopairPlugin {
569
569
  name: string;
570
570
  /** Plugin version (informational, not enforced) */
571
571
  version: string;
572
+ /**
573
+ * Optional override for the `--version` output string. When set, replaces
574
+ * the default `copair <version> (community)` identifier. First registered
575
+ * plugin that declares this wins. Used by editions (e.g. Pro) to brand the
576
+ * CLI without requiring community to know about them.
577
+ */
578
+ versionIdentifier?: string;
572
579
  /**
573
580
  * Called once during bootstrap, after config is loaded.
574
581
  * Use for setup: register custom providers, tools, commands.
@@ -726,7 +733,7 @@ declare class SessionManager {
726
733
  static cleanup(sessionsDir: string, maxSessions: number): Promise<void>;
727
734
  }
728
735
 
729
- declare function getVersionString(options?: BootstrapOptions): string;
736
+ declare function getVersionString(): string;
730
737
  interface BootstrapOptions {
731
738
  edition?: 'community' | 'pro';
732
739
  editionVersion?: string;