stigmergy 1.3.16-beta.1 → 1.3.16-beta.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/package.json
CHANGED
|
@@ -591,6 +591,9 @@ ${this.generateCLIRegistrationCode(cliName, commandName, projectPath)}
|
|
|
591
591
|
return `
|
|
592
592
|
// ${cliName.charAt(0).toUpperCase() + cliName.slice(1)} CLI integration
|
|
593
593
|
|
|
594
|
+
// Command name constant
|
|
595
|
+
const commandName = '${commandName}';
|
|
596
|
+
|
|
594
597
|
// Main command handler
|
|
595
598
|
function handleHistoryCommand(input) {
|
|
596
599
|
if (!input || typeof input !== 'string') {
|
|
@@ -747,6 +750,9 @@ if (typeof geminiCLI !== 'undefined') {
|
|
|
747
750
|
return `
|
|
748
751
|
// ${cliName.charAt(0).toUpperCase() + cliName.slice(1)} CLI integration
|
|
749
752
|
|
|
753
|
+
// Command name constant
|
|
754
|
+
const commandName = '${commandName}';
|
|
755
|
+
|
|
750
756
|
// Main command handler
|
|
751
757
|
function handleHistoryCommand(input) {
|
|
752
758
|
if (!input || typeof input !== 'string') {
|
|
@@ -828,6 +834,9 @@ module.exports = {
|
|
|
828
834
|
// ${cliName.charAt(0).toUpperCase() + cliName.slice(1)} CLI integration
|
|
829
835
|
// Generic registration - may need customization for specific CLI
|
|
830
836
|
|
|
837
|
+
// Command name constant
|
|
838
|
+
const commandName = '${commandName}';
|
|
839
|
+
|
|
831
840
|
// Main command handler
|
|
832
841
|
function handleHistoryCommand(input) {
|
|
833
842
|
if (!input || typeof input !== 'string') {
|