@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 CHANGED
@@ -1,5 +1,5 @@
1
1
  const API_BASE = 'https://agentskill.sh/api';
2
- const VERSION = '2.0.0';
2
+ const VERSION = '2.0.1';
3
3
  export async function apiFetch(path, options) {
4
4
  const res = await fetch(`${API_BASE}${path}`, {
5
5
  ...options,
@@ -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 { showLogo, ORANGE } from '../ui.js';
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();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@agentskill.sh/cli",
3
- "version": "2.0.0",
3
+ "version": "2.0.1",
4
4
  "description": "Agent Skill CLI. Search, install, review, and manage AI agent skills from agentskill.sh.",
5
5
  "type": "module",
6
6
  "bin": {