File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 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" : {
Original file line number Diff line number Diff line change 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 */
332332export async function startAcpAgentServer ( ) : Promise < void > {
333333 console . error ( '[ACP Agent] Starting AutoDev Xiuper ACP Agent Server...' ) ;
Original file line number Diff line number Diff 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' ) ;
You can’t perform that action at this time.
0 commit comments