coterie 0.1.0 → 0.2.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 +5 -3
- package/package.json +2 -2
- package/schemas/coterie.config.schema.json +1 -1
package/README.md
CHANGED
|
@@ -94,9 +94,11 @@ mode, and you never get raw findings JSON back. The mode shapes the deliberation
|
|
|
94
94
|
|
|
95
95
|
Everything runs on your existing logins — the agents on **Claude Max**, **ChatGPT**
|
|
96
96
|
(Codex), and **Cursor Pro**, and the behind-the-scenes coordination (routing /
|
|
97
|
-
judging / moderating) on
|
|
98
|
-
|
|
99
|
-
|
|
97
|
+
judging / moderating) on a coding agent's CLI too: it prefers Claude (`claude -p`)
|
|
98
|
+
but **falls back to Codex or Cursor**, so coordination works even without Claude
|
|
99
|
+
installed. So a full turn is **$0 metered** — no setup, no flags. On startup
|
|
100
|
+
`coterie chat` checks each required CLI is installed and signed in, and tells you
|
|
101
|
+
exactly what to do if not.
|
|
100
102
|
|
|
101
103
|
> **No pay-as-you-go API backend (yet).** Coordination is subscription-only by
|
|
102
104
|
> design, so a session can never run up a surprise metered bill. A pluggable API
|
package/package.json
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "coterie",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.2.0",
|
|
4
4
|
"description": "Conversational meta-agent for your terminal: every prompt runs through a multi-agent coordination round (debate, adversarial, tournament, consensus) over Claude Code + Codex, on your subscriptions.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "Chris King <chris@cking.me>",
|
|
7
|
-
"homepage": "https://coterie
|
|
7
|
+
"homepage": "https://github.com/cxk280/coterie#readme",
|
|
8
8
|
"repository": {
|
|
9
9
|
"type": "git",
|
|
10
10
|
"url": "git+https://github.com/cxk280/coterie.git",
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
|
-
"$id": "https://
|
|
3
|
+
"$id": "https://github.com/cxk280/coterie/blob/main/packages/coterie-js/schemas/coterie.config.schema.json",
|
|
4
4
|
"title": "Coterie configuration",
|
|
5
5
|
"description": "Single source of truth for Coterie runtime configuration. The Python and JS runtimes both validate against this schema.",
|
|
6
6
|
"type": "object",
|