@agentskill.sh/cli 2.0.0 → 2.0.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/api.js +1 -1
- package/dist/commands/setup.js +1 -2
- package/dist/ui.js +3 -5
- package/package.json +1 -1
package/dist/api.js
CHANGED
package/dist/commands/setup.js
CHANGED
|
@@ -1,13 +1,12 @@
|
|
|
1
1
|
import * as p from '@clack/prompts';
|
|
2
2
|
import pc from 'picocolors';
|
|
3
3
|
import { apiFetch } from '../api.js';
|
|
4
|
-
import {
|
|
4
|
+
import { ORANGE } from '../ui.js';
|
|
5
5
|
import { detectInstalledAgents, getUniversalAgents, getNonUniversalAgents, getAgentDisplayName, } from '../agents.js';
|
|
6
6
|
import { installToAgents } from '../installer.js';
|
|
7
7
|
import { addToLock, saveSelectedAgents } from '../skill-lock.js';
|
|
8
8
|
const OFFICIAL_SKILLS = ['agentskill-sh/learn', 'agentskill-sh/review-skill'];
|
|
9
9
|
export async function setupCommand(_args) {
|
|
10
|
-
showLogo();
|
|
11
10
|
// Detect installed agents
|
|
12
11
|
const s = p.spinner();
|
|
13
12
|
s.start('Detecting installed agents...');
|
package/dist/ui.js
CHANGED
|
@@ -15,11 +15,9 @@ const g3 = (s) => `\x1b[38;5;245m${s}${RESET}`;
|
|
|
15
15
|
const g4 = (s) => `\x1b[38;5;240m${s}${RESET}`;
|
|
16
16
|
const g5 = (s) => `\x1b[38;5;236m${s}${RESET}`; // dimmest
|
|
17
17
|
export const LOGO = [
|
|
18
|
-
g1('
|
|
19
|
-
g2('
|
|
20
|
-
g3('
|
|
21
|
-
g4(' \\__,_| \\__, | \\___/|_||_\\__|/__/|_\\_\\_||_||_|__/__/ |_||_|'),
|
|
22
|
-
g5(' |___/'),
|
|
18
|
+
g1(' ▄▀▄ ▄▀▀ ▄▀▀'),
|
|
19
|
+
g2(' █▀█ █ █ ▀▀█') + ' ' + DIM('agentskill.sh'),
|
|
20
|
+
g3(' ▀ ▀ ▀▀ ▀▀▀'),
|
|
23
21
|
].join('\n');
|
|
24
22
|
export function showLogo() {
|
|
25
23
|
console.log();
|