px2cc 2.2.0 → 2.2.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/cli.js +2 -2
  2. package/package.json +4 -4
package/cli.js CHANGED
@@ -376,7 +376,7 @@ export async function main() {
376
376
  console.log(`šŸ“Š å‘ēŽ° ${chalk.bold(systemRoles.length)} äøŖē³»ē»Ÿč§’č‰²ļ¼Œ${chalk.bold(userRoles.length)} äøŖē”Øęˆ·č§’č‰²\n`);
377
377
 
378
378
  // ę˜¾ē¤ŗč§’č‰²é€‰ę‹©
379
- const { selectedRole, installType, confirm, selectedTools } = await showRoleMenu(systemRoles, userRoles, availableServers);
379
+ const { selectedRole, installType, confirm, selectedTools, customName } = await showRoleMenu(systemRoles, userRoles, availableServers);
380
380
 
381
381
  if (!confirm) {
382
382
  console.log(chalk.yellow('\nšŸ‘‹ å®‰č£…å·²å–ę¶ˆ'));
@@ -389,7 +389,7 @@ export async function main() {
389
389
  console.log(chalk.blue(`\nšŸŽ­ 开始安装角色: ${selectedRole.role} (${installType})`));
390
390
 
391
391
  // 安装角色
392
- const result = await installRole(selectedRole, installType, claudeDir, selectedTools, selections.customName);
392
+ const result = await installRole(selectedRole, installType, claudeDir, selectedTools, customName);
393
393
 
394
394
  console.log(chalk.green.bold('\nāœ… č§’č‰²å®‰č£…å®Œęˆļ¼'));
395
395
  console.log(`\nšŸ“„ ē”Ÿęˆēš„ę–‡ä»¶:`);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "px2cc",
3
- "version": "2.2.0",
3
+ "version": "2.2.2",
4
4
  "description": "CLI tool that implements complete PromptX Action flow in Claude Code - role activation, dependency loading, cognition networks & memory systems",
5
5
  "main": "cli.js",
6
6
  "type": "module",
@@ -42,10 +42,10 @@
42
42
  },
43
43
  "repository": {
44
44
  "type": "git",
45
- "url": "https://github.com/promptx/px2cc"
45
+ "url": "https://github.com/Cen-Yaozu/px2cc.git"
46
46
  },
47
- "homepage": "https://github.com/promptx/px2cc#readme",
47
+ "homepage": "https://github.com/Cen-Yaozu/px2cc#readme",
48
48
  "bugs": {
49
- "url": "https://github.com/promptx/px2cc/issues"
49
+ "url": "https://github.com/Cen-Yaozu/px2cc/issues"
50
50
  }
51
51
  }