@skvil/mcp-server 0.1.0 → 0.2.0

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/tools.js CHANGED
@@ -308,6 +308,18 @@ export function registerTools(server) {
308
308
  .record(z.union([z.string(), z.number(), z.boolean(), z.null()]))
309
309
  .optional()
310
310
  .describe('SKILL.md frontmatter metadata (optional)'),
311
+ skill_url: z
312
+ .string()
313
+ .max(512)
314
+ .regex(/^https:\/\/(github\.com|gitlab\.com|clawhub\.ai)\/[^/]+\/[^/].*$/, 'Must be a GitHub, GitLab, or ClawHub HTTPS URL')
315
+ .describe('Source URL of the skill (e.g. "https://github.com/user/repo")'),
316
+ provider: z
317
+ .enum(['github', 'gitlab', 'clawhub'])
318
+ .describe('Platform hosting the skill'),
319
+ agent: z
320
+ .string()
321
+ .max(50)
322
+ .describe('Agent platform submitting the scan (e.g. "claude", "codex", "openclaw")'),
311
323
  }, async (params) => {
312
324
  try {
313
325
  const result = await api.scan(params);
package/dist/version.js CHANGED
@@ -1,2 +1,2 @@
1
1
  /** Single source of truth for the package version. */
2
- export const VERSION = '0.1.0';
2
+ export const VERSION = '0.2.0';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@skvil/mcp-server",
3
- "version": "0.1.0",
3
+ "version": "0.2.0",
4
4
  "description": "MCP server for the Skvil security scanner — verify, scan, and report AI agent skills",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",