agent-skill-manager 1.12.0 → 1.13.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/README.md CHANGED
@@ -736,6 +736,8 @@ Every skill is a directory containing a `SKILL.md` file. The file starts with a
736
736
  name: my-skill
737
737
  description: "A short description of what this skill does"
738
738
  license: "MIT"
739
+ compatibility: "Claude Code, Codex"
740
+ allowed-tools: Bash Read Grep Glob WebFetch
739
741
  effort: medium
740
742
  metadata:
741
743
  version: 1.0.0
@@ -748,6 +750,8 @@ metadata:
748
750
  | `name` | yes | Unique skill identifier (used in list/search) |
749
751
  | `description` | yes | One-line summary shown in listings |
750
752
  | `license` | no | SPDX license identifier (e.g., `MIT`, `Apache-2.0`) |
753
+ | `compatibility` | no | Comma-separated list of compatible AI agents |
754
+ | `allowed-tools` | no | Space or comma-delimited tool names the skill uses |
751
755
  | `effort` | no | Effort level: `low`, `medium`, `high`, or `max` |
752
756
  | `metadata.version` | no | Semver version string (defaults to `0.0.0`) |
753
757
  | `metadata.creator` | no | Author name and optional email |