@geoly-ai/social-hub-cli 0.1.12 → 0.1.13

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
@@ -4,6 +4,12 @@ All notable changes to `@geoly-ai/social-hub-cli` are documented in this file.
4
4
 
5
5
  Release workflow: `pnpm release:cli` → `pnpm publish:cli`.
6
6
 
7
+ ## [0.1.13] - 2026-06-11
8
+
9
+ ### Fixed
10
+
11
+ - use a checkmark for selected options
12
+
7
13
  ## [0.1.12] - 2026-06-11
8
14
 
9
15
  ### Fixed
@@ -1,6 +1,6 @@
1
1
  {
2
- "generatedAt": "2026-06-11T03:02:07.016Z",
3
- "cliVersion": "0.1.12",
2
+ "generatedAt": "2026-06-11T03:16:38.423Z",
3
+ "cliVersion": "0.1.13",
4
4
  "commands": [
5
5
  "accounts",
6
6
  "accounts brand-bindings",
@@ -188,7 +188,7 @@ export function formatSelectFrame(state, title) {
188
188
  for (let i = state.offset; i < end; i += 1) {
189
189
  const c = state.choices[i];
190
190
  const pointer = i === state.cursor ? ">" : " ";
191
- const mark = state.multi ? (state.checked.has(i) ? "[x] " : "[ ] ") : "";
191
+ const mark = state.multi ? (state.checked.has(i) ? "[] " : "[ ] ") : "";
192
192
  lines.push(`${pointer} ${mark}${i + 1}. ${c.label}`);
193
193
  }
194
194
  if (end < state.choices.length) {
@@ -205,7 +205,7 @@ describe("formatSelectFrame", () => {
205
205
  expect(lines[0]).toContain("Select skill(s):");
206
206
  expect(lines[0]).toContain("type 1,3 or *");
207
207
  expect(lines[1]).toContain("[ ] 1. All social-hub skills");
208
- expect(lines[2]).toMatch(/^> \[x\] 2\./);
208
+ expect(lines[2]).toMatch(/^> \[✓\] 2\./);
209
209
  });
210
210
  it("shows the number buffer and errors", () => {
211
211
  let s = createSelectState(CHOICES, { multi: true });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@geoly-ai/social-hub-cli",
3
- "version": "0.1.12",
3
+ "version": "0.1.13",
4
4
  "type": "module",
5
5
  "description": "social-hub CLI for Social Ops Hub",
6
6
  "repository": {
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "version": 1,
3
3
  "package": "social-ops-hub",
4
- "cliVersion": "0.1.12",
4
+ "cliVersion": "0.1.13",
5
5
  "repository": "social-ops-hub",
6
6
  "publish": {
7
7
  "registry": "https://skill.sh",