One change
skills
managed-agents/skills
Nearest release: v2.1.239, published 2 hours before this site recorded the change. Shown because the two are within 24 hours of each other. Nothing here says the release caused the edit.
managed-agents/skills Changed · +6 / -8 lines
from line 32
``` ```bash CLI - ant skills create \ - --file example_skill.zip + ant skills create --file example_skill.zip ``` ```python Python
from line 148
``` ```php PHP - // The PHP SDK exposes the Skills API under the beta namespace; field names can differ from other SDKs. use Anthropic\Client; use Anthropic\Core\FileParam; $client = new Client(); - $skill = $client->beta->skills->create( + $skill = $client->skills->create( files: [ - FileParam::fromResource(fopen('example_skill.zip', 'r')) + FileParam::fromResource(fopen('example_skill.zip', 'r')), ], ); echo "Created skill: {$skill->id}\n"; - echo "Latest version: {$skill->latestVersion}\n"; + echo "Latest version: {$skill->latestVersionID}\n"; ``` ```ruby Ruby
from line 347
model: 'claude-opus-5', system: 'You are a financial analysis agent.', skills: [ - ['type' => 'anthropic', 'skill_id' => 'xlsx'], - ['type' => 'custom', 'skill_id' => 'skill_01AbCdEfGhIjKlMnOpQrStUv', 'version' => 'latest'], + ['type' => 'anthropic', 'skillID' => 'xlsx'], + ['type' => 'custom', 'skillID' => 'skill_01AbCdEfGhIjKlMnOpQrStUv', 'version' => 'latest'], ], ); ```