Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,6 @@ members = ["crates/chorus-relay"]
edition = "2021"
license = "MIT"
authors = ["Steven Roomberg"]
description = "Collaborative OpenCode session sharing. Pair-program a live AI session from another OpenCode instance in real time."
repository = "https://github.com/sroomberg/chorus"
homepage = "https://github.com/sroomberg/chorus"
19 changes: 19 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,25 @@
{
"name": "chorus",
"description": "Collaborative OpenCode session sharing. Pair-program a live AI session from another OpenCode instance in real time.",
"private": true,
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/sroomberg/chorus.git"
},
"bugs": {
"url": "https://github.com/sroomberg/chorus/issues"
},
"homepage": "https://github.com/sroomberg/chorus#readme",
"keywords": [
"opencode",
"pair-programming",
"collaboration",
"websocket",
"ai-coding",
"coding-agent",
"plugin"
],
"packageManager": "bun@1.3.14",
"workspaces": [
"packages/*"
Expand Down
17 changes: 17 additions & 0 deletions packages/plugin/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,24 @@
{
"name": "@chorus/plugin",
"version": "2.0.0",
"description": "OpenCode plugin for collaborative session sharing via chorus-relay.",
"private": true,
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/sroomberg/chorus.git",
"directory": "packages/plugin"
},
"bugs": {
"url": "https://github.com/sroomberg/chorus/issues"
},
"homepage": "https://github.com/sroomberg/chorus#readme",
"keywords": [
"opencode",
"pair-programming",
"collaboration",
"plugin"
],
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
Expand Down
17 changes: 17 additions & 0 deletions packages/shared/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,24 @@
{
"name": "@chorus/shared",
"version": "0.1.0",
"description": "Shared TypeScript types and protocol codecs for Chorus.",
"private": true,
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/sroomberg/chorus.git",
"directory": "packages/shared"
},
"bugs": {
"url": "https://github.com/sroomberg/chorus/issues"
},
"homepage": "https://github.com/sroomberg/chorus#readme",
"keywords": [
"opencode",
"chorus",
"protocol",
"websocket"
],
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
Expand Down
Loading