px2cc 2.2.1 ā 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.
- package/cli.js +2 -2
- package/package.json +1 -1
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,
|
|
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.
|
|
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",
|