mrvn-cli 0.2.1 → 0.2.2

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.
@@ -208,7 +208,7 @@ var DocumentStore = class {
208
208
  updated: now,
209
209
  ...cleaned
210
210
  };
211
- const fileName = type === "meeting" ? `${now.slice(0, 10)}-${slugify(fullFrontmatter.title)}.md` : `${id}.md`;
211
+ const fileName = type === "meeting" ? `${cleaned.date?.slice(0, 10) ?? now.slice(0, 10)}-${slugify(fullFrontmatter.title)}.md` : `${id}.md`;
212
212
  const filePath = path3.join(dir, fileName);
213
213
  const doc = {
214
214
  frontmatter: fullFrontmatter,
@@ -232,7 +232,7 @@ var DocumentStore = class {
232
232
  }
233
233
  const dir = path3.join(this.docsDir, dirName);
234
234
  fs3.mkdirSync(dir, { recursive: true });
235
- const fileName = type === "meeting" ? `${frontmatter.created.slice(0, 10)}-${slugify(frontmatter.title)}.md` : `${frontmatter.id}.md`;
235
+ const fileName = type === "meeting" ? `${frontmatter.date?.slice(0, 10) ?? frontmatter.created.slice(0, 10)}-${slugify(frontmatter.title)}.md` : `${frontmatter.id}.md`;
236
236
  const filePath = path3.join(dir, fileName);
237
237
  const doc = { frontmatter, content, filePath };
238
238
  fs3.writeFileSync(filePath, serializeDocument(doc), "utf-8");
@@ -14851,7 +14851,7 @@ function createMeetingTools(store) {
14851
14851
  owner: external_exports.string().optional().describe("Meeting organizer"),
14852
14852
  tags: external_exports.array(external_exports.string()).optional().describe("Tags for categorization"),
14853
14853
  attendees: external_exports.array(external_exports.string()).optional().describe("List of attendees"),
14854
- date: external_exports.string().optional().describe("Meeting date (ISO format)")
14854
+ date: external_exports.string().describe("Date the meeting took place (ISO format, e.g. '2025-01-15'). Extract from the meeting content. If not found, ask the user before calling this tool.")
14855
14855
  },
14856
14856
  async (args) => {
14857
14857
  const frontmatter = {
@@ -14861,7 +14861,7 @@ function createMeetingTools(store) {
14861
14861
  if (args.owner) frontmatter.owner = args.owner;
14862
14862
  if (args.tags) frontmatter.tags = args.tags;
14863
14863
  if (args.attendees) frontmatter.attendees = args.attendees;
14864
- if (args.date) frontmatter.date = args.date;
14864
+ frontmatter.date = args.date;
14865
14865
  const doc = store.create(
14866
14866
  "meeting",
14867
14867
  frontmatter,
@@ -15561,7 +15561,7 @@ var genericAgilePlugin = {
15561
15561
 
15562
15562
  **Meeting Tools:**
15563
15563
  - **list_meetings** / **get_meeting**: Browse and read meeting records.
15564
- - **create_meeting**: Record new meetings with attendees, date, and agenda.
15564
+ - **create_meeting**: Record new meetings with attendees, date, and agenda. The meeting date is required \u2014 extract it from the meeting content or ask the user if not found.
15565
15565
  - **update_meeting**: Update meeting status or notes after completion.
15566
15566
  - **analyze_meeting**: Analyze a meeting to review its outcomes and extract artifacts.
15567
15567
 
@@ -15582,7 +15582,7 @@ var genericAgilePlugin = {
15582
15582
 
15583
15583
  **Meeting Tools:**
15584
15584
  - **list_meetings** / **get_meeting**: Browse and read meeting records.
15585
- - **create_meeting**: Record new meetings with attendees, date, and agenda.
15585
+ - **create_meeting**: Record new meetings with attendees, date, and agenda. The meeting date is required \u2014 extract it from the meeting content or ask the user if not found.
15586
15586
  - **update_meeting**: Update meeting status or notes after completion.
15587
15587
  - **analyze_meeting**: Analyze a meeting to review its outcomes and extract artifacts.
15588
15588
 
@@ -15610,7 +15610,7 @@ var genericAgilePlugin = {
15610
15610
 
15611
15611
  **Meeting Tools:**
15612
15612
  - **list_meetings** / **get_meeting**: Browse and read meeting records.
15613
- - **create_meeting**: Record new meetings with attendees, date, and agenda.
15613
+ - **create_meeting**: Record new meetings with attendees, date, and agenda. The meeting date is required \u2014 extract it from the meeting content or ask the user if not found.
15614
15614
  - **update_meeting**: Update meeting status or notes after completion.
15615
15615
  - **analyze_meeting**: Analyze a completed meeting to extract decisions, actions, and questions. Use this to ensure meeting outcomes are properly tracked as governance artifacts.
15616
15616
 
@@ -15628,7 +15628,7 @@ var genericAgilePlugin = {
15628
15628
  **Key workflow rule:** Epics must link to approved features \u2014 the system enforces this. The Product Owner defines and approves features, the Tech Lead breaks them into epics, and the Delivery Manager tracks dates and progress.
15629
15629
 
15630
15630
  - **list_meetings** / **get_meeting**: Browse and read meeting records.
15631
- - **create_meeting**: Record meetings with attendees, date, and agenda.
15631
+ - **create_meeting**: Record meetings with attendees, date, and agenda. The meeting date is required \u2014 extract it from the meeting content or ask the user if not found.
15632
15632
  - **update_meeting**: Update meeting status or notes.
15633
15633
  - **analyze_meeting**: Analyze a meeting to extract decisions, actions, and questions as governance artifacts.`
15634
15634
  }