@meet-ai/cli 0.0.26 → 0.0.27
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 +8 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -17057,9 +17057,11 @@ function parseYamlFrontmatter(content) {
|
|
|
17057
17057
|
const body = match[1];
|
|
17058
17058
|
const nameMatch = body.match(/^name:\s*(.+)$/m);
|
|
17059
17059
|
const descMatch = body.match(/^description:\s*(.+)$/m);
|
|
17060
|
+
const disableMatch = body.match(/^disable-model-invocation:\s*(.+)$/m);
|
|
17060
17061
|
return {
|
|
17061
17062
|
name: nameMatch?.[1]?.trim(),
|
|
17062
|
-
description: descMatch?.[1]?.trim()
|
|
17063
|
+
description: descMatch?.[1]?.trim(),
|
|
17064
|
+
disableModelInvocation: disableMatch?.[1]?.trim() === "true"
|
|
17063
17065
|
};
|
|
17064
17066
|
}
|
|
17065
17067
|
async function readSkillsFromDir(baseDir, source, scope) {
|
|
@@ -17084,6 +17086,8 @@ async function readSkillsFromDir(baseDir, source, scope) {
|
|
|
17084
17086
|
continue;
|
|
17085
17087
|
if (!fm.description)
|
|
17086
17088
|
continue;
|
|
17089
|
+
if (fm.disableModelInvocation)
|
|
17090
|
+
continue;
|
|
17087
17091
|
results.push({
|
|
17088
17092
|
name: fm.name ?? entry,
|
|
17089
17093
|
description: fm.description,
|
|
@@ -17116,6 +17120,8 @@ async function readCommandsFromDir(commandsDir, source, scope) {
|
|
|
17116
17120
|
const fm = parseYamlFrontmatter(content);
|
|
17117
17121
|
if (!fm || !fm.description)
|
|
17118
17122
|
continue;
|
|
17123
|
+
if (fm.disableModelInvocation)
|
|
17124
|
+
continue;
|
|
17119
17125
|
const fallbackName = entry.name.slice(0, -3);
|
|
17120
17126
|
results.push({
|
|
17121
17127
|
name: fm.name ?? fallbackName,
|
|
@@ -56308,7 +56314,7 @@ init_output();
|
|
|
56308
56314
|
var main = defineCommand({
|
|
56309
56315
|
meta: {
|
|
56310
56316
|
name: "meet-ai",
|
|
56311
|
-
version: "0.0.
|
|
56317
|
+
version: "0.0.27",
|
|
56312
56318
|
description: "CLI for meet-ai chat rooms — create rooms, send messages, and stream via WebSocket"
|
|
56313
56319
|
},
|
|
56314
56320
|
args: {
|