@chittr/cli 0.0.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.
package/README.md ADDED
@@ -0,0 +1,5 @@
1
+ # @chittr/cli
2
+
3
+ A local conversation between you, Codex, and Claude Code as named peers, in your terminal or browser. Agents inspect the launch directory, ask each other questions, contribute concurrently, or explicitly pass.
4
+
5
+ This version reserves the package name under the chittr scope while the first release is prepared. Source and progress: https://github.com/mcgloneb/ai-chat
package/bin/chittr.js ADDED
@@ -0,0 +1,3 @@
1
+ #!/usr/bin/env node
2
+ console.log('chittr 0.0.1 (@chittr/cli): a terminal conversation with Codex and Claude Code as peers.');
3
+ console.log('The first release is being prepared. Follow https://github.com/mcgloneb/ai-chat');
package/package.json ADDED
@@ -0,0 +1,13 @@
1
+ {
2
+ "name": "@chittr/cli",
3
+ "version": "0.0.1",
4
+ "description": "A local conversation between you, Codex, and Claude Code as peers. Initial release in progress.",
5
+ "license": "MIT",
6
+ "type": "module",
7
+ "bin": { "chittr": "bin/chittr.js" },
8
+ "files": ["bin", "README.md"],
9
+ "engines": { "node": ">=22" },
10
+ "repository": { "type": "git", "url": "git+https://github.com/mcgloneb/ai-chat.git" },
11
+ "homepage": "https://github.com/mcgloneb/ai-chat",
12
+ "keywords": ["cli", "codex", "claude", "agents", "chat", "terminal"]
13
+ }