chore: release main#37
Merged
Merged
Conversation
Contributor
Author
|
🤖 Created releases: 🌻 |
Contributor
There was a problem hiding this comment.
No issues found across 7 files
Auto-approved: Standard release PR generated by Release Please. Contains only version bumps and changelog updates with no changes to source code logic.
Architecture diagram
sequenceDiagram
participant User as Developer/Agent
participant CLI as @pleaseai/ask (CLI)
participant NPM as NPM Registry
participant FS as Local File System
Note over User,FS: Runtime flow for fetching library documentation
User->>CLI: ask install <package>@<version>
CLI->>NPM: Fetch package metadata
NPM-->>CLI: Registry JSON (tarball URL)
CLI->>NPM: Download .tgz tarball
NPM-->>CLI: Tarball stream
Note right of CLI: NEW: Monorepo Disambiguation
CLI->>CLI: Identify package root within tarball
alt Monorepo Package
CLI->>CLI: Resolve sub-path (e.g., packages/name)
else Standard Package
CLI->>CLI: Use default root
end
Note right of CLI: NEW: dist/docs Support
CLI->>CLI: Locate documentation assets in dist/docs
CLI->>FS: Extract & write markdown files
FS-->>CLI: Write success
CLI-->>User: Documentation ready for AI context
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.
🤖 I have created a release beep boop
ask-plugin: 0.2.1
0.2.1 (2026-04-08)
Features
ask: 0.2.1
0.2.1 (2026-04-08)
Features
Dependencies
ask-schema: 0.2.1
0.2.1 (2026-04-08)
Features
This PR was generated with Release Please. See documentation.
Summary by cubic
Release 0.2.1 adds CLI support for installing and reading dist/docs from npm tarballs, with monorepo package path disambiguation. Versions are aligned to 0.2.1 across the repo, including
@pleaseai/askand@pleaseai/ask-schema.Written for commit bacadb4. Summary will update on new commits.