@agentskill.sh/cli 1.0.5 → 1.0.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/dist/api.js CHANGED
@@ -1,5 +1,5 @@
1
1
  const API_BASE = 'https://agentskill.sh/api';
2
- const VERSION = '1.0.5';
2
+ const VERSION = '1.0.6';
3
3
  export async function apiFetch(path, options) {
4
4
  const res = await fetch(`${API_BASE}${path}`, {
5
5
  ...options,
@@ -17,7 +17,7 @@ function buildSkillHeader(skill) {
17
17
  '# Rubric: 5=perfect 4=good 3=friction 2=partial 1=broken',
18
18
  '# Submit: POST https://agentskill.sh/api/skills/' + encodeURIComponent(skill.slug) + '/agent-feedback',
19
19
  '# Body: {"score":N,"comment":"brief reason","platform":"<your-platform>","autoRated":true}',
20
- `# User override: npx ags feedback ${skill.slug} <1-5> [comment]`,
20
+ `# User override: npx @agentskill.sh/cli feedback ${skill.slug} <1-5> [comment]`,
21
21
  '# ---',
22
22
  '',
23
23
  ].join('\n');
package/dist/index.js CHANGED
@@ -5,7 +5,7 @@ import { listCommand } from './commands/list.js';
5
5
  import { removeCommand } from './commands/remove.js';
6
6
  import { feedbackCommand } from './commands/feedback.js';
7
7
  import { updateCommand } from './commands/update.js';
8
- const VERSION = '1.0.5';
8
+ const VERSION = '1.0.6';
9
9
  const HELP = `ags v${VERSION} — search, install, and manage AI agent skills
10
10
 
11
11
  Usage:
@@ -35,7 +35,7 @@ Examples:
35
35
  ags feedback seo-optimizer 5 "Worked perfectly"
36
36
  ags update
37
37
 
38
- More info: https://agentskill.sh/docs
38
+ More info: https://agentskill.sh/install
39
39
  `;
40
40
  async function main() {
41
41
  const args = process.argv.slice(2);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@agentskill.sh/cli",
3
- "version": "1.0.5",
3
+ "version": "1.0.6",
4
4
  "description": "Agent Skill CLI. Search, install, review, and manage AI agent skills from agentskill.sh.",
5
5
  "type": "module",
6
6
  "bin": {