@tryaura/aura-cli 0.3.0 → 0.3.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.
@@ -445,7 +445,7 @@ function trustedPath(value, jsonPath) {
445
445
  const APP_ID_PATTERN = /^[a-z0-9][a-z0-9._-]*$/u;
446
446
  const MCP_CATALOG_ID_PATTERN = /^[a-z0-9][a-z0-9._-]*\/[a-zA-Z0-9][a-zA-Z0-9._-]*$/u;
447
447
  const SKILL_ID_PATTERN = /^[a-z0-9]+(?:-[a-z0-9]+)*$/u;
448
- const SKILL_SOURCE_PATTERN = /^(?:directory|driver|plugin):[^\s:]+$/u;
448
+ const SKILL_SOURCE_PATTERN = /^(?:directory|driver|plugin|repo):[^\s:]+$/u;
449
449
  const OVERRIDE_KEY_PATTERN = /^[a-z][a-zA-Z0-9]{0,63}$/u;
450
450
  /** Room for several future override kinds without leaving the forward-compat window unbounded. */
451
451
  const MAX_OVERRIDE_KEYS = 32;
@@ -537,9 +537,10 @@ function skills(value) {
537
537
  }
538
538
  function requiredSkillSource(value, path) {
539
539
  const source = requiredString(value, "source", path);
540
- if (!SKILL_SOURCE_PATTERN.test(source)) throw invalid(`${path}.source`, "must be a plugin:, directory:, or driver: source ID");
540
+ if (!SKILL_SOURCE_PATTERN.test(source)) throw invalid(`${path}.source`, "must be a plugin:, directory:, driver:, or repo: source ID");
541
541
  if (source.startsWith("plugin:")) return `plugin:${source.slice(7)}`;
542
542
  if (source.startsWith("directory:")) return `directory:${source.slice(10)}`;
543
+ if (source.startsWith("repo:")) return `repo:${source.slice(5)}`;
543
544
  return `driver:${source.slice(7)}`;
544
545
  }
545
546
  var UnsupportedAuraManifestVersionError = class extends Error {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tryaura/aura-cli",
3
- "version": "0.3.0",
3
+ "version": "0.3.1",
4
4
  "description": "The composable Aura CLI runtime and official plugin distribution.",
5
5
  "keywords": [
6
6
  "agent",
@@ -50,18 +50,18 @@
50
50
  "toml-eslint-parser": "^1.0.3",
51
51
  "typanion": "3.14.0",
52
52
  "undici": "7.29.0",
53
- "@tryaura/aura-sdk": "0.3.0"
53
+ "@tryaura/aura-sdk": "0.3.1"
54
54
  },
55
55
  "devDependencies": {
56
56
  "@types/node": "24.13.3",
57
57
  "ajv": "8.20.0",
58
58
  "vitest": "4.1.10",
59
- "@tryaura/adapter-codex": "0.0.0",
60
59
  "@tryaura/adapter-claude-code": "0.0.0",
61
- "@tryaura/content-official": "0.0.0",
62
- "@tryaura/checks-core": "0.0.0",
63
60
  "@tryaura/adapter-cursor": "0.0.0",
64
- "@tryaura/core": "0.0.0"
61
+ "@tryaura/content-official": "0.0.0",
62
+ "@tryaura/core": "0.0.0",
63
+ "@tryaura/adapter-codex": "0.0.0",
64
+ "@tryaura/checks-core": "0.0.0"
65
65
  },
66
66
  "engines": {
67
67
  "node": ">=24"