🦋 New version release#215
Merged
Merged
Conversation
58784ac to
a0b8617
Compare
a0b8617 to
495afb9
Compare
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.
This PR was opened by the Changesets release GitHub action. When you're ready to do a release, you can merge this and publish to npm yourself or setup this action to publish automatically. If you're not ready to do a release yet, that's fine, whenever you add more changesets to main, this PR will be updated.
Releases
@smooai/smooth@0.20.0
Minor Changes
9fbab21: Extend the
thagentic-tooling commands against the api-prime crawl/search/knowledge routes:th crawl crawl <seed>— new authed whole-site crawl. Supports--limit,--max-depth(sent asmaxDiscoveryDepth),--extract(JSON spec verbatim or wrapped as{"prompt": …}),--json, and--org. Default output is a compactcompleted/totalsummary plus one crawled URL per line.th crawl map <url>— new authed URL-discovery command. Supports--search,--limit,--include-subdomains,--json, and--org; prints one discovered link per line by default.th crawl scrape— new--extract <SPEC>(JSON verbatim or{"prompt": …}),--screenshot(appendsscreenshotto the formats), and--render <MODE>flags.--extract/--renderare authed-only; the free tier surfaces the backend's rejection.th search --scrape— forcessearchDepth: "advanced"so each result is crawl-enriched with full page content (authed tier; clamped on the free tier).th api knowledge add-url <url>— new authed command that kicks off a crawl→ingest job into the org's knowledge base viaPOST /organizations/{org}/knowledge/websites(--namedefaults to the URL).59d926b:
th knowledge— promote knowledge to a top-level command with semantic search.th knowledge search "<query>"runs the SAME retrieval an agent does over the org's OWN knowledge base (embed → dense+sparse hybrid → RRF), returning the most relevant passages. Scope to a single document with--doc <id>, cap with--max, or get raw JSON with--json. It rounds out the agentic-coding trio alongsideth search(the web) andth crawl(a page).The full knowledge surface (
list/show/content/upload/website/process/update/delete) is now available top-level asth knowledge(aliaskb), same asth api knowledge. Backed by the new authedPOST /organizations/:org_id/knowledge/searchendpoint (SMOODEV-2610).