@meet-ai/cli 0.0.23 → 0.0.24
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/dist/index.js +2 -16
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -17150,9 +17150,6 @@ async function listCommands(options) {
|
|
|
17150
17150
|
const userClaudeDir = options._userClaudeDir ?? join3(homedir3(), ".claude");
|
|
17151
17151
|
const pluginsFile = options._pluginsFile ?? join3(homedir3(), ".claude", "plugins", "installed_plugins.json");
|
|
17152
17152
|
const results = [];
|
|
17153
|
-
for (const cmd of BUILT_IN_COMMANDS) {
|
|
17154
|
-
results.push({ ...cmd, type: "command", source: "built-in", scope: "user" });
|
|
17155
|
-
}
|
|
17156
17153
|
const userSkills = await readSkillsFromDir(userClaudeDir, "standalone", "user");
|
|
17157
17154
|
results.push(...userSkills);
|
|
17158
17155
|
const projectClaudeDir = join3(projectPath, ".claude");
|
|
@@ -17185,18 +17182,7 @@ async function listCommands(options) {
|
|
|
17185
17182
|
}
|
|
17186
17183
|
return results;
|
|
17187
17184
|
}
|
|
17188
|
-
var
|
|
17189
|
-
var init_usecase15 = __esm(() => {
|
|
17190
|
-
BUILT_IN_COMMANDS = [
|
|
17191
|
-
{ name: "help", description: "Get help with using Claude Code" },
|
|
17192
|
-
{ name: "model", description: "Switch AI model" },
|
|
17193
|
-
{ name: "clear", description: "Clear conversation history" },
|
|
17194
|
-
{ name: "compact", description: "Compact conversation context" },
|
|
17195
|
-
{ name: "fast", description: "Toggle fast mode" },
|
|
17196
|
-
{ name: "cost", description: "Show usage costs" },
|
|
17197
|
-
{ name: "resume", description: "Resume previous session" }
|
|
17198
|
-
];
|
|
17199
|
-
});
|
|
17185
|
+
var init_usecase15 = () => {};
|
|
17200
17186
|
|
|
17201
17187
|
// src/commands/list-commands/command.ts
|
|
17202
17188
|
var exports_command17 = {};
|
|
@@ -56315,7 +56301,7 @@ init_output();
|
|
|
56315
56301
|
var main = defineCommand({
|
|
56316
56302
|
meta: {
|
|
56317
56303
|
name: "meet-ai",
|
|
56318
|
-
version: "0.0.
|
|
56304
|
+
version: "0.0.24",
|
|
56319
56305
|
description: "CLI for meet-ai chat rooms — create rooms, send messages, and stream via WebSocket"
|
|
56320
56306
|
},
|
|
56321
56307
|
args: {
|