chore: release main#75
Merged
Merged
Conversation
Contributor
There was a problem hiding this comment.
No issues found across 5 files
Requires human review: This is an automated release PR (0.4.0) containing breaking changes and significant feature updates. Release PRs trigger deployments and should be verified by a human.
Architecture diagram
sequenceDiagram
participant User as User / AI Agent
participant CLI as ASK CLI (@pleaseai/ask)
participant Reg as Registry API (please.ai)
participant Eco as Ecosystems (npm, PyPI, Maven, GitHub)
participant Local as Local Storage (.ask/ / ~/.ask/)
Note over CLI,Reg: NEW: ADR-0001 Registry Model (Entry -> Package -> Source)
User->>CLI: ask docs add <spec>
CLI->>Reg: CHANGED: Lookup package metadata
Reg-->>CLI: Return Package + Source definitions
rect rgb(240, 240, 240)
Note right of CLI: NEW: Parallelized Resolution Phase
par Multi-Ecosystem Fetching
CLI->>Eco: NEW: Resolve version (npm/PyPI/Pub/Maven)
Eco-->>CLI: Version metadata / Tarball URL
and Source Discovery
CLI->>Eco: NEW: Check llms-txt / GitHub Source
Eco-->>CLI: Documentation source data
end
end
CLI->>CLI: NEW: Convention-based docs discovery pipeline
alt In-place Documentation (npm)
CLI->>Local: NEW: Reference node_modules directly
else External Download
alt Global Store (~/.ask/)
CLI->>Local: NEW: Cache docs in global store
else Workspace Store (.ask/)
CLI->>Local: CHANGED: Shallow clone / download to workspace
end
end
CLI->>Local: NEW: Update ask.lock (Zod-validated I/O)
CLI->>Local: NEW: Auto-manage .gitignore for vendored docs
CLI-->>User: Docs ready for Agent context
Contributor
Author
|
🤖 Created releases: 🌻 |
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.4.0
0.4.0 (2026-04-12)
⚠ BREAKING CHANGES
Features
ask docs add(#10) (c0f0e80)Bug Fixes
Performance Improvements
Code Refactoring
ask: 0.4.0
0.4.0 (2026-04-12)
⚠ BREAKING CHANGES
Features
ask docs add(#10) (c0f0e80)Bug Fixes
Performance Improvements
Code Refactoring
This PR was generated with Release Please. See documentation.
Summary by cubic
Release 0.4.0 with a renamed schema package, a refactored registry model, and notable CLI upgrades. This improves docs discovery and performance, and requires small migrations for schema imports and registry types.
New Features
~/.ask/node_modules)ask list --jsonMigration
@pleaseai/registry-schemawith@pleaseai/ask-schemaRegistryStrategy/expandStrategiesusage to the newPackage/Sourcetypes (ADR-0001).ask/and includeask.lockif versioning the workspaceWritten for commit 8dfcda0. Summary will update on new commits.