@indigoai-us/hq-cli 5.103.21 → 5.103.23
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/CHANGELOG.md +15 -0
- package/dist/commands/auth.d.ts +1 -1
- package/dist/commands/auth.js +2 -2
- package/dist/commands/integrations-api.d.ts +13 -0
- package/dist/commands/integrations-api.js +35 -0
- package/dist/commands/integrations-connect.js +79 -42
- package/dist/commands/integrations-core.d.ts +20 -0
- package/dist/commands/integrations-core.js +59 -5
- package/dist/commands/integrations-manage.d.ts +1 -1
- package/dist/commands/integrations-manage.js +159 -4
- package/dist/commands/integrations.d.ts +2 -0
- package/dist/commands/integrations.js +84 -5
- package/dist/commands/skill.d.ts +44 -142
- package/dist/commands/skill.js +214 -521
- package/dist/main.js +2 -3
- package/package.json +2 -2
package/dist/main.js
CHANGED
|
@@ -206,9 +206,8 @@ registerGroupGrantsCommand(program);
|
|
|
206
206
|
// browse-vs-sync subcommands (`hq files browse`/`cat`) onto the same group.
|
|
207
207
|
const filesCmd = registerFilesCommand(program);
|
|
208
208
|
registerFilesBrowseCommands(filesCmd);
|
|
209
|
-
//
|
|
210
|
-
//
|
|
211
|
-
// routes the MCP (US-007) and console merge (US-009) surfaces use — no forked logic.
|
|
209
|
+
// Comment-only skill improvement loop. Structured suggestion/review commands are
|
|
210
|
+
// intentionally absent; live content changes remain governed by FILE_ACL sync.
|
|
212
211
|
registerSkillCommand(program);
|
|
213
212
|
// Membership management (subcommand group — hq members invite|list|revoke)
|
|
214
213
|
registerMembersCommand(program);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@indigoai-us/hq-cli",
|
|
3
|
-
"version": "5.103.
|
|
3
|
+
"version": "5.103.23",
|
|
4
4
|
"description": "HQ by Indigo management CLI — modules and cloud sync",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"bin": {
|
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
"dependencies": {
|
|
31
31
|
"@aws-sdk/client-iot-data-plane": "^3.1096.0",
|
|
32
32
|
"@aws-sdk/client-s3": "^3.1049.0",
|
|
33
|
-
"@indigoai-us/hq-cloud": "~6.15.
|
|
33
|
+
"@indigoai-us/hq-cloud": "~6.15.71",
|
|
34
34
|
"@indigoai-us/hq-onboarding": "^0.1.0",
|
|
35
35
|
"@sentry/node": "^10.49.0",
|
|
36
36
|
"@tobilu/qmd": "2.5.3",
|