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 README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# CoDev

CoDev — AI Coding Agent Hub. Install, configure, and launch AI coding agents (Claude Code, OpenCode) from a single CLI.
CoDev — AI Coding Agent Hub. Install, configure, and manage AI coding agents (Claude Code, OpenCode, etc.) from a single CLI.

## Install

Expand Down
4 changes: 4 additions & 0 deletions codev-cli/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ out
dist
*.tgz

# transient swap file from the prepack/postpack README swap;
# only exists mid-publish, but may be left behind if publish aborts
README.repo.md

# code coverage
coverage
*.lcov
Expand Down
2 changes: 1 addition & 1 deletion codev-cli/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# CoDev

CoDev — AI Coding Agent Hub. Install, configure, and launch AI coding agents (Claude Code, OpenCode) from a single CLI.
CoDev — AI Coding Agent Hub. Install, configure, and manage AI coding agents (Claude Code, OpenCode, etc.) from a single CLI.

## Install

Expand Down
7 changes: 5 additions & 2 deletions codev-cli/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"name": "codev-ai",
"version": "0.1.0",
"version": "0.1.1",
"description": "CoDev — AI Coding Agent Hub. Install, configure, and manage AI coding agents (Claude Code, OpenCode, etc.) from a single CLI.",
"type": "module",
"bin": {
"codev": "./dist/index.js"
Expand All @@ -16,7 +17,9 @@
"typecheck": "bunx --bun tsc --noEmit",
"check": "bunx --bun @biomejs/biome check",
"fix": "bunx --bun @biomejs/biome check --write",
"prepublishOnly": "bun run check && bun run typecheck && bun test && bun run build"
"prepublishOnly": "bun run check && bun run typecheck && bun test && bun run build",
"prepack": "mv README.md README.repo.md && mv ../README.md README.md",
"postpack": "mv README.md ../README.md && mv README.repo.md README.md"
},
"dependencies": {
"ink": "^7.0.1",
Expand Down
4 changes: 3 additions & 1 deletion codev-cli/src/const.ts
Original file line number Diff line number Diff line change
@@ -1,2 +1,4 @@
import pkg from "../package.json" with { type: "json" };

export const BASE_URL = atob("aHR0cHM6Ly9uZXRtaW5kLnZpZXR0ZWwudm4v");
export const VERSION = "0.1.0";
export const VERSION: string = pkg.version;
1 change: 1 addition & 0 deletions codev-cli/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@

"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
"resolveJsonModule": true,
"verbatimModuleSyntax": true,
"noEmit": true,

Expand Down
Loading