@mattheworiordan/remi 0.2.0 → 0.2.1
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/cli/commands/demo.js +4 -4
- package/dist/core/fuzzy.js +1 -1
- package/package.json +4 -3
|
@@ -120,12 +120,12 @@ export async function demoCommand(opts) {
|
|
|
120
120
|
}
|
|
121
121
|
if (!isJsonMode()) {
|
|
122
122
|
process.stdout.write(`\n${chalk.green("✓")} Demo list created with ${items.length} reminders and ${sections.length} sections.\n`);
|
|
123
|
-
process.stdout.write(chalk.dim(
|
|
124
|
-
process.stdout.write(chalk.dim(
|
|
125
|
-
process.stdout.write(chalk.dim(
|
|
123
|
+
process.stdout.write(chalk.dim("\nTry these:\n"));
|
|
124
|
+
process.stdout.write(chalk.dim(" remi list demo\n"));
|
|
125
|
+
process.stdout.write(chalk.dim(" remi sections demo\n"));
|
|
126
126
|
process.stdout.write(chalk.dim(` remi complete demo "Book dentist appointment"\n`));
|
|
127
127
|
process.stdout.write(chalk.dim(` remi move demo "Learn to make sourdough bread" --to-section "This Week"\n`));
|
|
128
|
-
process.stdout.write(chalk.dim(
|
|
128
|
+
process.stdout.write(chalk.dim(" remi demo --cleanup (when done)\n\n"));
|
|
129
129
|
}
|
|
130
130
|
else {
|
|
131
131
|
outputMessage(`Demo list created with ${items.length} reminders and ${sections.length} sections`);
|
package/dist/core/fuzzy.js
CHANGED
|
@@ -30,7 +30,7 @@ export function fuzzyFind(query, items, getName, itemType) {
|
|
|
30
30
|
}
|
|
31
31
|
if (substringMatches.length > 1) {
|
|
32
32
|
const names = substringMatches.map((item) => ` - ${getName(item)}`).join("\n");
|
|
33
|
-
throw new RemiCommandError(ErrorCode.AMBIGUOUS_REMINDER, `"${query}" matches multiple ${itemType}s:\n${names}`,
|
|
33
|
+
throw new RemiCommandError(ErrorCode.AMBIGUOUS_REMINDER, `"${query}" matches multiple ${itemType}s:\n${names}`, "Be more specific, or use the full name");
|
|
34
34
|
}
|
|
35
35
|
// 4. No match — suggest closest
|
|
36
36
|
const allNames = items.map((item) => ` - ${getName(item)}`).join("\n");
|
package/package.json
CHANGED
|
@@ -1,10 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mattheworiordan/remi",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.1",
|
|
4
|
+
"mcpName": "io.github.mattheworiordan/remi",
|
|
4
5
|
"description": "Fast, reliable CLI for Apple Reminders with section support and iCloud sync",
|
|
5
6
|
"type": "module",
|
|
6
7
|
"bin": {
|
|
7
|
-
"remi": "
|
|
8
|
+
"remi": "dist/cli/index.js"
|
|
8
9
|
},
|
|
9
10
|
"scripts": {
|
|
10
11
|
"build": "tsc && chmod +x dist/cli/index.js",
|
|
@@ -39,7 +40,7 @@
|
|
|
39
40
|
"license": "MIT",
|
|
40
41
|
"repository": {
|
|
41
42
|
"type": "git",
|
|
42
|
-
"url": "https://github.com/mattheworiordan/remi.git"
|
|
43
|
+
"url": "git+https://github.com/mattheworiordan/remi.git"
|
|
43
44
|
},
|
|
44
45
|
"engines": {
|
|
45
46
|
"node": ">=18",
|