busy-cli 0.1.3 → 0.2.0

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.
@@ -230,7 +230,7 @@ function createOperation(section, docId, filePath) {
230
230
  const id = `${docId}::${slug}`; // Use :: for concept IDs
231
231
  // Parse steps and checklist from content
232
232
  const { steps, checklist } = parseOperationContent(section);
233
- // Get extends from section heading (e.g., ## [ValidateInput][Operation])
233
+ // Get extends from section heading (e.g., ## [ValidateInput][SomeType])
234
234
  const extends_ = getSectionExtends(section.id);
235
235
  return {
236
236
  kind: 'operation',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "busy-cli",
3
- "version": "0.1.3",
3
+ "version": "0.2.0",
4
4
  "description": "CLI for BUSY document framework - parse, validate, and manage BUSY workspaces",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -367,7 +367,7 @@ Definition content.
367
367
  const content = `
368
368
  # [Operations]
369
369
 
370
- ## [Run Full Analysis][Operation]
370
+ ## [Run Full Analysis]
371
371
 
372
372
  ### [Steps]
373
373
  1. Analyze data
@@ -303,7 +303,7 @@ function createOperation(
303
303
  // Parse steps and checklist from content
304
304
  const { steps, checklist } = parseOperationContent(section);
305
305
 
306
- // Get extends from section heading (e.g., ## [ValidateInput][Operation])
306
+ // Get extends from section heading (e.g., ## [ValidateInput][SomeType])
307
307
  const extends_ = getSectionExtends(section.id);
308
308
 
309
309
  return {