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
2 changes: 1 addition & 1 deletion .changeset/colony-package-namespace.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
"colony": patch
"@imdeadpool/colony": patch
"@colony/compress": patch
"@colony/config": patch
"@colony/core": patch
Expand Down
2 changes: 1 addition & 1 deletion .changeset/colony-session-cwd-binding.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
"@colony/hooks": patch
"@colony/storage": patch
"colony": patch
"@imdeadpool/colony": patch
---

Bind hook-created sessions back to their repository cwd so colony views can see live Codex/Claude work instead of orphan `cwd: null` sessions.
2 changes: 1 addition & 1 deletion .changeset/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"changelog": "@changesets/cli/changelog",
"commit": false,
"fixed": [],
"linked": [["@colony/*", "colony"]],
"linked": [["@colony/*", "@imdeadpool/colony"]],
"access": "public",
"baseBranch": "main",
"updateInternalDependencies": "patch",
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ The design is ant-colony inspired on purpose. Agents do not need a central plann
## Install

```bash
npm install -g colony
npm install -g @imdeadpool/colony
```

Register Colony with your IDE or agent runtime:
Expand Down
4 changes: 2 additions & 2 deletions apps/cli/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "colony",
"name": "@imdeadpool/colony",
"version": "0.2.0",
"license": "MIT",
"description": "Local-first memory and coordination for Claude Code, Gemini CLI, OpenCode, Codex, and Cursor.",
Expand All @@ -19,7 +19,7 @@
"homepage": "https://github.com/recodeee/colony",
"repository": {
"type": "git",
"url": "https://github.com/recodeee/colony.git"
"url": "git+https://github.com/recodeee/colony.git"
},
"bugs": {
"url": "https://github.com/recodeee/colony/issues"
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"homepage": "https://github.com/recodeee/colony",
"repository": {
"type": "git",
"url": "https://github.com/recodeee/colony.git"
"url": "git+https://github.com/recodeee/colony.git"
},
"bugs": {
"url": "https://github.com/recodeee/colony/issues"
Expand All @@ -19,7 +19,7 @@
"packageManager": "pnpm@9.12.0",
"scripts": {
"build": "pnpm -r --filter \"./packages/*\" --filter \"./apps/*\" build",
"dev": "pnpm --filter colony dev",
"dev": "pnpm --filter @imdeadpool/colony dev",
"test": "pnpm -r test",
"typecheck": "pnpm -r typecheck",
"lint": "biome check .",
Expand Down
2 changes: 1 addition & 1 deletion scripts/e2e-pack-release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ cleanup
mkdir -p "$PACK" "$PREFIX" "$HOME_DIR"

echo "==> 1. pack:release (build + pack-release.mjs)"
pnpm --filter colony pack:release >/dev/null
pnpm --filter @imdeadpool/colony pack:release >/dev/null

REL="$REPO/apps/cli/release"
test -f "$REL/package.json" || { echo "release dir missing package.json"; exit 1; }
Expand Down
2 changes: 1 addition & 1 deletion scripts/e2e-publish.sh
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ echo "==> 1. build everything"
pnpm build >/dev/null

echo "==> 2. stage publish files (README, LICENSE, hooks-scripts)"
pnpm --filter colony stage-publish
pnpm --filter @imdeadpool/colony stage-publish

echo "==> 3. npm pack from apps/cli"
VERSION=$(node -e "console.log(require('$REPO/apps/cli/package.json').version)")
Expand Down
Loading