@@ -26,25 +26,25 @@ component extends="coldbox-cli.models.BaseAICommand" {
2626 }
2727
2828 // Load manifest to get active agent
29- var manifest = loadManifest ( arguments .directory );
30- var activeAgent = manifest .activeAgent ?: " none" ;
31- var totalMcpServers = info .mcpServers .core .len () + info .mcpServers .module .len () + info .mcpServers .custom .len ();
29+ var manifest = loadManifest ( arguments .directory );
30+ var activeAgent = manifest .activeAgent ?: " none" ;
31+ var totalMcpServers = info .mcpServers .core .len () + info .mcpServers .module .len () + info .mcpServers .custom .len ();
3232
33- // Print configuration in a table
34- print .line ();
35- print .table (
36- headerNames = [ " Setting" , " Value" ],
37- data = [
38- [
39- " ColdBox CLI Version" ,
40- info .coldboxCliVersion
41- ],
42- [ " Language Mode" , info .language ],
43- [ " App Type" , info .templateType ],
44- [ " Active Agent" , activeAgent ],
45- [ " Guidelines" , info .guidelines .len () ],
46- [ " Skills" , info .skills .len () ],
47- [ " MCP Servers" , totalMcpServers ],
33+ // Print configuration in a table
34+ print .line ();
35+ print .table (
36+ headerNames = [ " Setting" , " Value" ],
37+ data = [
38+ [
39+ " ColdBox CLI Version" ,
40+ info .coldboxCliVersion
41+ ],
42+ [ " Language Mode" , info .language ],
43+ [ " App Type" , info .templateType ],
44+ [ " Active Agent" , activeAgent ],
45+ [ " Guidelines" , info .guidelines .len () ],
46+ [ " Skills" , info .skills .len () ],
47+ [ " MCP Servers" , totalMcpServers ]
4848 ]
4949 );
5050 print .line ();
0 commit comments