Skip to content

Commit 3cf99e6

Browse files
committed
chore: Update version to 1.0.1 and rename acp-agent command to acp
1 parent cb71e9f commit 3cf99e6

3 files changed

Lines changed: 5 additions & 5 deletions

File tree

mpp-ui/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@xiuper/cli",
3-
"version": "0.2.0",
3+
"version": "1.0.1",
44
"description": "AutoDev Xiuper CLI - Terminal UI for AI-powered development assistant",
55
"type": "module",
66
"bin": {

mpp-ui/src/jsMain/typescript/agents/acp/AcpAgentServer.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
* Communication happens over STDIO using JSON-RPC (newline-delimited JSON).
88
*
99
* Usage:
10-
* xiuper acp-agent
10+
* xiuper acp
1111
* # Now other editors can connect to this agent via its stdin/stdout
1212
*/
1313

@@ -327,7 +327,7 @@ class AcpSessionRenderer {
327327

328328
/**
329329
* Start the ACP agent server on stdin/stdout.
330-
* This is the entry point for `xiuper acp-agent` command.
330+
* This is the entry point for `xiuper acp` command.
331331
*/
332332
export async function startAcpAgentServer(): Promise<void> {
333333
console.error('[ACP Agent] Starting AutoDev Xiuper ACP Agent Server...');

mpp-ui/src/jsMain/typescript/index.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -440,7 +440,7 @@ async function main() {
440440
program
441441
.name('autodev')
442442
.description('AutoDev CLI - AI-powered development assistant')
443-
.version('0.1.3');
443+
.version('1.0.1');
444444

445445
// Interactive mode (default)
446446
program
@@ -515,7 +515,7 @@ async function main() {
515515

516516
// ACP Agent mode - expose as ACP agent for other editors
517517
program
518-
.command('acp-agent')
518+
.command('acp')
519519
.description('Start as an ACP (Agent Client Protocol) agent server on stdio. Other editors can connect to this agent.')
520520
.action(async () => {
521521
const { startAcpAgentServer } = await import('./agents/acp/AcpAgentServer.js');

0 commit comments

Comments
 (0)