@circlesac/holla 26.2.22 → 26.2.24

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/package.json CHANGED
@@ -5,11 +5,14 @@
5
5
  "dependencies": {
6
6
  "@circlesac/mack": "^26.2.4",
7
7
  "@slack/web-api": "^7.13.0",
8
- "citty": "^0.2.0"
8
+ "citty": "^0.2.0",
9
+ "turndown": "^7.2.2",
10
+ "turndown-plugin-gfm": "^1.0.2"
9
11
  },
10
12
  "description": "CLI tool that acts as you on messaging platforms",
11
13
  "devDependencies": {
12
14
  "@types/bun": "latest",
15
+ "@types/turndown": "^5.0.6",
13
16
  "@vitest/coverage-v8": "^4.0.18",
14
17
  "vitest": "^4.0.18"
15
18
  },
@@ -39,5 +42,5 @@
39
42
  "test": "vitest run"
40
43
  },
41
44
  "type": "module",
42
- "version": "26.2.22"
45
+ "version": "26.2.24"
43
46
  }
@@ -95,6 +95,10 @@ Options: `--sort timestamp|score`, `--sort-dir asc|desc`, `--limit <n>`, `--page
95
95
  ## Canvases
96
96
 
97
97
  ```bash
98
+ # Read a canvas (outputs markdown)
99
+ holla slack canvases read --canvas <id> -w <ws>
100
+ holla slack canvases read --canvas <id> -w <ws> --json # includes id, title, markdown, timestamps
101
+
98
102
  # Create (with optional auto-share)
99
103
  holla slack canvases create --title "Title" --markdown "content" --channel "#general" -w <ws>
100
104