hanka-cli 0.1.0 → 0.1.1

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/dist/index.js CHANGED
@@ -6,7 +6,7 @@ import Conf from 'conf';
6
6
  import { Octokit } from '@octokit/rest';
7
7
  import { writeFileSync, mkdirSync } from 'fs';
8
8
  import { join } from 'path';
9
- const GITHUB_CLIENT_ID = process.env.HANKA_CLIENT_ID ?? 'YOUR_GITHUB_OAUTH_APP_CLIENT_ID';
9
+ const GITHUB_CLIENT_ID = process.env.HANKA_CLIENT_ID ?? 'Ov23li84GpFEjgJi3y3x';
10
10
  const config = new Conf({ projectName: 'hanka' });
11
11
  const program = new Command();
12
12
  program
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "hanka-cli",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "CLI for Hanka — fetch and manage agent skills",
5
5
  "bin": { "hanka": "./dist/index.js" },
6
6
  "scripts": {
package/src/index.ts CHANGED
@@ -7,7 +7,7 @@ import { Octokit } from '@octokit/rest'
7
7
  import { writeFileSync, mkdirSync } from 'fs'
8
8
  import { join } from 'path'
9
9
 
10
- const GITHUB_CLIENT_ID = process.env.HANKA_CLIENT_ID ?? 'YOUR_GITHUB_OAUTH_APP_CLIENT_ID'
10
+ const GITHUB_CLIENT_ID = process.env.HANKA_CLIENT_ID ?? 'Ov23li84GpFEjgJi3y3x'
11
11
 
12
12
  const config = new Conf<{ token?: string; username?: string }>({ projectName: 'hanka' })
13
13