Loading...
Loading...
Search for academic literature, empirical evidence, and scholarly research using the Dimensions database. Use when seeking research papers to support product decisions, find empirical studies, conduct literature reviews, explore funding patterns, validate hypotheses with academic sources, or discover research trends. Supports publications, grants, patents, clinical trials, and researcher profiles. Triggers on requests for "academic evidence", "empirical research", "find studies", "literature search", or "research to support decisions".
npx skill4agent add kjgarza/marketplace-claude searching-academic-outputs-with-dimensions~/.dimensions/dsl.iniDIMENSIONS_KEYDIMENSIONS_ENDPOINT# Search publications
echo 'search publications for "machine learning" return publications limit 10' | shortwing
# Search grants
echo 'search grants for "artificial intelligence" return grants[title+funding_usd] limit 10' | shortwing
# Find researchers
echo 'search researchers for "John Smith" return researchers[first_name+last_name+current_research_org] limit 10' | shortwingsearch <source> [for "<terms>"] [where <filters>] return <result> [limit N]| Source | Description |
|---|---|
| Research papers, articles, books |
| Research funding awards |
| Patent applications and grants |
| Clinical trial records |
| Researcher profiles |
| Research datasets |
| Task | Query |
|---|---|
| Search by keyword | |
| Filter by year | |
| Search title only | |
| Highly cited papers | |
| Grants by funder | |
| Recent patents | |
| Clinical trials | |
| Aggregations | |
+echo 'search publications for "quantum" return publications[id+title+doi+year+times_cited] limit 10' | shortwing| Operator | Example |
|---|---|
| |
| |
| |
| |
| |
| Pattern | Example |
|---|---|
| AND (both required) | |
| OR (either matches) | |
| NOT (exclude) | |
| Grouped | |
| Exact phrase | |
| Proximity | |
and/orwhereAND/OR/NOT# Most specific - title only
echo 'search publications in title_only for "machine learning" return publications limit 20' | shortwing
# Good balance - title and abstract
echo 'search publications in title_abstract_only for "peer feedback AND writing" return publications limit 20' | shortwingecho 'search publications in title_abstract_only for "\"formative assessment\" AND \"higher education\"" return publications limit 20' | shortwingecho 'search publications in title_abstract_only for "\"peer review\"" where year>=2020 and times_cited>10 return publications[title+doi+times_cited+year] limit 20' | shortwingecho 'search publications for "cognitive load" where times_cited>50 return publications sort by times_cited desc limit 10' | shortwingfor "search term"~where journal.title~"Nature"limit| Error | Solution |
|---|---|
| shortwing not found | Install from ~/aves/shortwing: |
| Configuration error (exit code 2) | Set |
| Invalid credentials | Get new key from https://app.dimensions.ai/account/tokens |
| Query syntax error (exit code 1) | Check DSL syntax in dsl-reference.md |