@orderful/droid 0.42.0 → 0.42.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/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @orderful/droid
2
2
 
3
+ ## 0.42.1
4
+
5
+ ### Patch Changes
6
+
7
+ - [#254](https://github.com/Orderful/droid/pull/254) [`9b1bb79`](https://github.com/Orderful/droid/commit/9b1bb797b257660c8f36df41260a3c7684ac5c72) Thanks [@frytyler](https://github.com/frytyler)! - Meeting search defaults to latest matching meeting instead of all matches. Use `--all` flag to search across all recurring meetings.
8
+
3
9
  ## 0.42.0
4
10
 
5
11
  ### Minor Changes
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "droid-meeting",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "Work with meeting notes, summaries, and transcripts. List recent meetings, search content, generate context-aware summaries, export to codex. Backed by Granola MCP.",
5
5
  "author": {
6
6
  "name": "Orderful",
@@ -1,6 +1,6 @@
1
1
  name: meeting
2
2
  description: "Work with meeting notes, summaries, and transcripts. List recent meetings, search content, generate context-aware summaries, export to codex. Backed by Granola MCP."
3
- version: 0.1.0
3
+ version: 0.1.1
4
4
  status: beta
5
5
 
6
6
  includes:
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  name: meeting
3
3
  description: "Work with meeting notes, summaries, and transcripts. Use when user asks about meetings, wants to review notes, search decisions, or export to codex. User prompts like 'what did we discuss today', 'summarise the tech design review', 'export my meeting with Thea to codex'."
4
- argument-hint: "[search {query} | summary {title} | summarize {title} | export {title} | decisions | last week]"
4
+ argument-hint: "[search {query} [--all] | summary {title} | summarize {title} | export {title} | decisions | last week]"
5
5
  allowed-tools: [Read, Write, Edit, Glob, Grep, Bash(droid:*)]
6
6
  ---
7
7
 
@@ -41,7 +41,7 @@ If connected, proceed.
41
41
  |---------|--------|
42
42
  | `/meeting` | List recent meetings (this week) |
43
43
  | `/meeting last week` | List meetings from last week |
44
- | `/meeting search {query}` | Natural language search across all meetings |
44
+ | `/meeting search {query}` | Search meetings (latest match by default; use `--all` for all matches) |
45
45
  | `/meeting summary {title}` | Quick summary from Granola (fast, no context cost) |
46
46
  | `/meeting summarize {title}` | Context-aware summary using transcript + loaded project/codex context |
47
47
  | `/meeting export {title}` | Export meeting to codex |
@@ -61,12 +61,20 @@ Natural language is the primary interface. Users should not need these commands.
61
61
  2. Call with `time_range`: `"this_week"` (default) or `"last_week"`
62
62
  3. Present results as a table: title, date, participants
63
63
 
64
- ### Search (`/meeting search {query}`)
64
+ ### Search (`/meeting search {query}` / `/meeting search {query} --all`)
65
65
 
66
- 1. Use `ToolSearch` to load `mcp__granola__query_granola_meetings`
67
- 2. Call with user's query
68
- 3. Preserve citation links in the response
69
- 4. Present the response to the user
66
+ **Default behaviour: latest match.** Recurring meetings (dailies, weeklies) return multiple hits. Searching all of them is rarely what the user wants — they usually mean the most recent one.
67
+
68
+ 1. Use `ToolSearch` to load `mcp__granola__list_meetings` and `mcp__granola__query_granola_meetings`
69
+ 2. Call `list_meetings` with `time_range: "this_week"` (or `"last_week"` / `"last_30_days"` if no matches)
70
+ 3. Fuzzy-match the query against meeting titles in the list
71
+ 4. **If multiple meetings match the query title:**
72
+ - **Without `--all`:** Scope the Granola query to only the **most recent** matching meeting ID (pass `document_ids`). Mention: "Showing results from {date}'s {title}. Use `--all` to search across all {N} matches."
73
+ - **With `--all`:** Query across all matching meeting IDs (pass all IDs in `document_ids`). Mention: "Searching across {N} {title} meetings."
74
+ 5. **If only one meeting matches:** Query that single meeting (pass `document_ids`)
75
+ 6. **If no title matches but query looks like a topic:** Fall back to a broad Granola query without `document_ids` (original behaviour)
76
+ 7. Preserve citation links in the response
77
+ 8. Present the response to the user
70
78
 
71
79
  ### Quick summary (`/meeting summary {title}`)
72
80
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@orderful/droid",
3
- "version": "0.42.0",
3
+ "version": "0.42.1",
4
4
  "description": "AI workflow toolkit for sharing skills, commands, and agents across the team",
5
5
  "type": "module",
6
6
  "bin": {
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "droid-meeting",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "Work with meeting notes, summaries, and transcripts. List recent meetings, search content, generate context-aware summaries, export to codex. Backed by Granola MCP.",
5
5
  "author": {
6
6
  "name": "Orderful",
@@ -1,6 +1,6 @@
1
1
  name: meeting
2
2
  description: "Work with meeting notes, summaries, and transcripts. List recent meetings, search content, generate context-aware summaries, export to codex. Backed by Granola MCP."
3
- version: 0.1.0
3
+ version: 0.1.1
4
4
  status: beta
5
5
 
6
6
  includes:
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  name: meeting
3
3
  description: "Work with meeting notes, summaries, and transcripts. Use when user asks about meetings, wants to review notes, search decisions, or export to codex. User prompts like 'what did we discuss today', 'summarise the tech design review', 'export my meeting with Thea to codex'."
4
- argument-hint: "[search {query} | summary {title} | summarize {title} | export {title} | decisions | last week]"
4
+ argument-hint: "[search {query} [--all] | summary {title} | summarize {title} | export {title} | decisions | last week]"
5
5
  allowed-tools: [Read, Write, Edit, Glob, Grep, Bash(droid:*)]
6
6
  ---
7
7
 
@@ -41,7 +41,7 @@ If connected, proceed.
41
41
  |---------|--------|
42
42
  | `/meeting` | List recent meetings (this week) |
43
43
  | `/meeting last week` | List meetings from last week |
44
- | `/meeting search {query}` | Natural language search across all meetings |
44
+ | `/meeting search {query}` | Search meetings (latest match by default; use `--all` for all matches) |
45
45
  | `/meeting summary {title}` | Quick summary from Granola (fast, no context cost) |
46
46
  | `/meeting summarize {title}` | Context-aware summary using transcript + loaded project/codex context |
47
47
  | `/meeting export {title}` | Export meeting to codex |
@@ -61,12 +61,20 @@ Natural language is the primary interface. Users should not need these commands.
61
61
  2. Call with `time_range`: `"this_week"` (default) or `"last_week"`
62
62
  3. Present results as a table: title, date, participants
63
63
 
64
- ### Search (`/meeting search {query}`)
64
+ ### Search (`/meeting search {query}` / `/meeting search {query} --all`)
65
65
 
66
- 1. Use `ToolSearch` to load `mcp__granola__query_granola_meetings`
67
- 2. Call with user's query
68
- 3. Preserve citation links in the response
69
- 4. Present the response to the user
66
+ **Default behaviour: latest match.** Recurring meetings (dailies, weeklies) return multiple hits. Searching all of them is rarely what the user wants — they usually mean the most recent one.
67
+
68
+ 1. Use `ToolSearch` to load `mcp__granola__list_meetings` and `mcp__granola__query_granola_meetings`
69
+ 2. Call `list_meetings` with `time_range: "this_week"` (or `"last_week"` / `"last_30_days"` if no matches)
70
+ 3. Fuzzy-match the query against meeting titles in the list
71
+ 4. **If multiple meetings match the query title:**
72
+ - **Without `--all`:** Scope the Granola query to only the **most recent** matching meeting ID (pass `document_ids`). Mention: "Showing results from {date}'s {title}. Use `--all` to search across all {N} matches."
73
+ - **With `--all`:** Query across all matching meeting IDs (pass all IDs in `document_ids`). Mention: "Searching across {N} {title} meetings."
74
+ 5. **If only one meeting matches:** Query that single meeting (pass `document_ids`)
75
+ 6. **If no title matches but query looks like a topic:** Fall back to a broad Granola query without `document_ids` (original behaviour)
76
+ 7. Preserve citation links in the response
77
+ 8. Present the response to the user
70
78
 
71
79
  ### Quick summary (`/meeting summary {title}`)
72
80