@eliya-oss/agent-slack 0.1.4 → 0.1.6

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,17 @@
1
1
  # @eliya-oss/agent-slack
2
2
 
3
+ ## 0.1.6
4
+
5
+ ### Patch Changes
6
+
7
+ - Clean up the command catalog output-mode copy.
8
+
9
+ ## 0.1.5
10
+
11
+ ### Patch Changes
12
+
13
+ - Update the bundled Agent Slack public Client ID used by PKCE browser login.
14
+
3
15
  ## 0.1.4
4
16
 
5
17
  ### Patch Changes
@@ -240,7 +240,7 @@ const defaultOAuthScopes = [
240
240
  "team:read"
241
241
  ];
242
242
  const defaultPkceUserScopes = defaultOAuthScopes;
243
- const defaultPkceClientId = "8263309029475.11499738391475";
243
+ const defaultPkceClientId = "11499810382723.11506074725874";
244
244
  const apiCall = async (parsed, services) => {
245
245
  const method = requirePositional(parsed.positionals, 2, "METHOD");
246
246
  const payload = await parseJsonPayload({
@@ -55,7 +55,7 @@ const renderCommandCatalog = (catalog, paint) => {
55
55
  "",
56
56
  `${paint("dim", "Use")} ${paint("cyan", `${catalog.name} <command> [--json]`)}`,
57
57
  ...(aliases === undefined ? [] : [`${paint("dim", "Alias")} ${aliases}`]),
58
- `${paint("dim", "Output")} human in terminals, JSON when piped or with --json`,
58
+ `${paint("dim", "Output")} readable in terminals; JSON for pipes and --json`,
59
59
  "",
60
60
  ...groups.flatMap((group) => renderCommandGroup(group, paint)),
61
61
  "",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eliya-oss/agent-slack",
3
- "version": "0.1.4",
3
+ "version": "0.1.6",
4
4
  "description": "Slack context CLI for AI agents.",
5
5
  "type": "module",
6
6
  "packageManager": "pnpm@11.9.0",