feat(patents): add asta patents cli backed by s2-public-api - #98
Open
publicmatt wants to merge 3 commits into
Open
feat(patents): add asta patents cli backed by s2-public-api#98publicmatt wants to merge 3 commits into
publicmatt wants to merge 3 commits into
Conversation
added 3 commits
July 22, 2026 13:50
client integration for the s2 public api patent endpoints (firs2#150 b5). patents ride the same service as papers. the client reuses the semantic_scholar base url and auth under /graph/v1/patent. endpoints return 503 until the cluster is fed (b3), matching s2-public-api#535.
`ASTA_PATENT_URL` points the client at a local s2-public-api. it falls back to the semantic_scholar base when unset. rename the `patent` command and skill to `patents` to match `papers`.
`SKILL.md` stated the form as <office>-<docNumber>-<kind>. the api 404s on that, and an agent reads the 404 as "no such patent". the canonical form comes from firs2 build_ucid, which uses no separators. mocked tests encoded the dashed form too, so they passed against it.
publicmatt
marked this pull request as ready for review
July 29, 2026 20:12
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.
patents group: bm25 search, get-by-ucid, forward-citations.
thin PatentClient over the s2-public-api
/graph/v1/patentendpoints.ASTA_PATENT_URLpoints the client at a local s2-public-api.client falls back to the semantic_scholar base when unset.
client reuses the semantic_scholar auth token.
ships the
patentsskill so agents can pull patent context in-session.command and skill are plural to match
papers.