-
-
Notifications
You must be signed in to change notification settings - Fork 88
Add Claude and Codex skill marketplaces #64
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,20 @@ | ||
| { | ||
| "name": "axe", | ||
| "interface": { | ||
| "displayName": "AXe" | ||
| }, | ||
| "plugins": [ | ||
| { | ||
| "name": "axe", | ||
| "source": { | ||
| "source": "local", | ||
| "path": "./" | ||
| }, | ||
| "policy": { | ||
| "installation": "AVAILABLE", | ||
| "authentication": "ON_INSTALL" | ||
| }, | ||
| "category": "Developer Tools" | ||
| } | ||
| ] | ||
| } |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,16 @@ | ||
| { | ||
| "$schema": "https://json.schemastore.org/claude-code-marketplace.json", | ||
| "name": "axe", | ||
| "description": "AXe skills for iOS Simulator automation", | ||
| "owner": { | ||
| "name": "Cameron Cooke" | ||
| }, | ||
| "plugins": [ | ||
| { | ||
| "name": "axe", | ||
| "source": "./", | ||
| "description": "Automate iOS Simulators with the AXe CLI", | ||
| "category": "development" | ||
| } | ||
| ] | ||
| } |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,20 @@ | ||
| { | ||
| "$schema": "https://json.schemastore.org/claude-code-plugin-manifest.json", | ||
| "name": "axe", | ||
| "displayName": "AXe", | ||
| "version": "1.8.0", | ||
| "description": "Agent-ready AXe CLI guidance for iOS Simulator automation", | ||
| "author": { | ||
| "name": "Cameron Cooke" | ||
| }, | ||
| "homepage": "https://axe-cli.com/docs", | ||
| "repository": "https://github.com/cameroncooke/AXe", | ||
| "license": "MIT", | ||
| "keywords": [ | ||
| "ios", | ||
| "simulator", | ||
| "automation", | ||
| "accessibility" | ||
| ], | ||
| "skills": "./Skills/CLI/" | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Bug: The relative paths for skills in Suggested FixUpdate the relative paths in the Prompt for AI AgentAlso affects:
Did we get this right? 👍 / 👎 to inform future reviews.
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. this only affects windows and because this is a skill for interacting with simulators its inherantly running on macOS. I confirmed this works on my machine. I also fed it into the agent just to be sure and it gave this feedback: |
||
| } | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,36 @@ | ||
| { | ||
| "name": "axe", | ||
| "version": "1.8.0", | ||
| "description": "Agent-ready AXe CLI guidance for iOS Simulator automation.", | ||
| "author": { | ||
| "name": "Cameron Cooke", | ||
| "url": "https://github.com/cameroncooke" | ||
| }, | ||
| "homepage": "https://axe-cli.com/docs", | ||
| "repository": "https://github.com/cameroncooke/AXe", | ||
| "license": "MIT", | ||
| "keywords": [ | ||
| "ios", | ||
| "simulator", | ||
| "automation", | ||
| "accessibility" | ||
| ], | ||
| "skills": "./Skills/CLI/axe", | ||
| "interface": { | ||
| "displayName": "AXe", | ||
| "shortDescription": "Automate iOS Simulators with AXe.", | ||
| "longDescription": "Provides Codex with AXe CLI guidance for inspecting and automating iOS Simulator interfaces.", | ||
| "developerName": "Cameron Cooke", | ||
| "category": "Developer Tools", | ||
| "capabilities": [ | ||
| "Read", | ||
| "Write" | ||
| ], | ||
| "websiteURL": "https://axe-cli.com/docs", | ||
| "defaultPrompt": [ | ||
| "Inspect the current iOS Simulator UI with AXe.", | ||
| "Automate this iOS Simulator flow with AXe.", | ||
| "Capture and verify the current simulator screen." | ||
| ] | ||
| } | ||
| } |
Uh oh!
There was an error while loading. Please reload this page.