feat(ask): add ASK plugin to marketplace#150
Merged
Conversation
Add Agent Skills Kit (ASK) plugin from pleaseai/ask to the marketplace, categorized under development with documentation and tooling tags.
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
There was a problem hiding this comment.
No issues found across 1 file
Confidence score: 5/5
- Automated review surfaced no issues in the provided summaries.
- No files require special attention.
Architecture diagram
sequenceDiagram
participant User
participant CLI as Plugin CLI
participant Registry as Marketplace Registry (JSON)
participant GitHub as GitHub (pleaseai/ask)
participant FS as Local Filesystem
Note over User,FS: Plugin Installation Flow for "ask"
User->>CLI: /plugin install ask
CLI->>Registry: NEW: Lookup plugin metadata for "ask"
Registry-->>CLI: Return metadata (Repo: pleaseai/ask, Category: development)
alt NEW: GitHub Source Resolution
CLI->>GitHub: Request latest release/source for pleaseai/ask
GitHub-->>CLI: Return plugin bundle
end
CLI->>FS: Extract and install plugin to local directory
FS-->>CLI: Installation complete
CLI-->>User: Confirm "ask" (Agent Skills Kit) is ready to use
Contributor
There was a problem hiding this comment.
Code Review
This pull request adds a new entry for the 'ask' (Agent Skills Kit) plugin to the marketplace configuration. A review comment suggests updating the 'documentation' tag to 'docs' to ensure consistency with other documentation-related plugins in the registry.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
pleaseai/ask) to the marketplacedevelopmentwithtoolinganddocumentationtagsdocumentation,registry,library,agent-skills,askTest plan
askentry appears correctly in the marketplace JSON/plugin install ask@pleaseaiSummary by cubic
Adds the
ask(Agent Skills Kit) plugin frompleaseai/askto the marketplace in.claude-plugin/marketplace.json, categorized underdevelopmentwithtoolinganddocumentationtags. UpdatesREADME.mdwith an ASK section and adds/plugin install ask@pleaseaito the install examples.Written for commit 836b642. Summary will update on new commits.