searching-academic-outputs-with-dimensions
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".
What this skill does
# Overview Query the Dimensions academic database to find publications, grants, patents, clinical trials, and researchers using the shortwing CLI. Queries use the Dimensions Search Language (DSL) piped to shortwing. **Reference Documentation:** - [dsl-reference.md](dsl-reference.md) — Full DSL syntax, operators, fields, and example queries **Authentication:** Requires API key from https://app.dimensions.ai/account/tokens. Configure credentials in `~/.dimensions/dsl.ini` or use environment variables (`DIMENSIONS_KEY`, `DIMENSIONS_ENDPOINT`). See Authentication section in [dsl-reference.md](dsl-reference.md) for details. # Quick Start ```bash # 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' | shortwing ``` # Query Structure ``` search <source> [for "<terms>"] [where <filters>] return <result> [limit N] ``` # Available Sources | Source | Description | |--------|-------------| | `publications` | Research papers, articles, books | | `grants` | Research funding awards | | `patents` | Patent applications and grants | | `clinical_trials` | Clinical trial records | | `researchers` | Researcher profiles | | `datasets` | Research datasets | # Common Query Patterns | Task | Query | |------|-------| | Search by keyword | `search publications for "CRISPR" return publications limit 20` | | Filter by year | `search publications where year=2024 return publications limit 10` | | Search title only | `search publications in title_only for "climate change" return publications limit 10` | | Highly cited papers | `search publications for "AI" where times_cited>100 return publications sort by times_cited desc limit 10` | | Grants by funder | `search grants where funders.name~"NIH" return grants[title+funding_usd] limit 10` | | Recent patents | `search patents where filing_year>=2023 return patents[title+assignees] limit 10` | | Clinical trials | `search clinical_trials for "diabetes" return clinical_trials[title+phase] limit 10` | | Aggregations | `search publications for "robotics" return research_orgs aggregate count sort by count desc limit 10` | # Return Specific Fields Use `+` to combine fields: ```bash echo 'search publications for "quantum" return publications[id+title+doi+year+times_cited] limit 10' | shortwing ``` # Filter Operators | Operator | Example | |----------|---------| | `=` equals | `year=2024` | | `>` greater than | `times_cited>100` | | `~` contains | `journal.title~"Nature"` | | `in` range | `year in [2020:2024]` | | `and/or` combine | `year=2024 and type="article"` | # Boolean Search Operators Boolean operators in search terms must be **UPPERCASE** and **inside** the quotes: | Pattern | Example | |---------|---------| | AND (both required) | `for "machine learning AND healthcare"` | | OR (either matches) | `for "python OR java"` | | NOT (exclude) | `for "AI NOT robotics"` | | Grouped | `for "(cancer OR tumor) AND treatment"` | | Exact phrase | `for "\"peer feedback\""` (escaped quotes) | | Proximity | `for "\"formal model\"~10"` (within 10 words) | **Important**: Lowercase `and/or` in the `where` clause combines filters, but search terms require UPPERCASE `AND/OR/NOT`. # Tips for Precise Results 1. **Use targeted search indexes** for relevant results: ```bash # 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' | shortwing ``` 2. **Use phrase searches** for exact multi-word terms: ```bash echo 'search publications in title_abstract_only for "\"formative assessment\" AND \"higher education\"" return publications limit 20' | shortwing ``` 3. **Combine search with filters** to narrow scope: ```bash echo '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' | shortwing ``` 4. **Filter by citation count** to find influential papers: ```bash echo 'search publications for "cognitive load" where times_cited>50 return publications sort by times_cited desc limit 10' | shortwing ``` # General Tips - Always use double quotes around search terms: `for "search term"` - Use `~` for partial string matching: `where journal.title~"Nature"` - Use `limit` to control result size - See [dsl-reference.md](dsl-reference.md) for complete syntax and all available fields # Error Handling | Error | Solution | |-------|----------| | shortwing not found | Install from ~/aves/shortwing: `cd ~/aves/shortwing && uv pip install .` | | Configuration error (exit code 2) | Set `DIMENSIONS_KEY` env var or create `~/.dimensions/dsl.ini` | | 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](dsl-reference.md) |
Related in General
modeling-omnistudio-epc-catalog
IncludedSalesforce Industries CME EPC product-modeling skill for Product2-based catalog creation. Use when creating EPC products, configuring product attributes, building offer bundles with Product Child Items, or reviewing EPC DataPack JSON metadata for product catalog changes. TRIGGER when: user creates or updates Product2 EPC records, AttributeAssignment payloads, AttributeMetadata/AttributeDefaultValues, Offer bundles, or ProductChildItem relationships. DO NOT TRIGGER when: designing OmniScripts/FlexCards/Integration Procedures (use building-omnistudio-omniscript, building-omnistudio-flexcard, or building-omnistudio-integration-procedure), implementing Apex business logic (use generating-apex), or troubleshooting deployment pipelines (use deploying-metadata).
relationship-science-coach
IncludedUse this skill for direct, practical adult relationship coaching: couples conflict, repair, trust, marriage, dating, flirting, attachment patterns, emotional connection, sex, desire differences, eroticism, kink negotiation, affection, love languages, breakups, and long-term passion. Draw on Gottman, EFT and Hold Me Tight, attachment science, modern sex research, Perel, Nagoski, Kerner, Schnarch, Love and Stosny, and flexible love-language tools. Be concrete and low-hedge. Redirect only for imminent danger, abuse, coercive control, minors, non-consent, self-harm, stalking, or medical/legal/psychiatric decisions.
building-sf-integrations
IncludedSalesforce integration architecture and runtime plumbing with 120-point scoring. Use this skill to set up Named Credentials, External Credentials, External Services, REST/SOAP callout patterns, Platform Events, and Change Data Capture. TRIGGER when: user sets up Named Credentials, External Services, REST/SOAP callouts, Platform Events, CDC, or touches .namedCredential-meta.xml files. DO NOT TRIGGER when: Connected App/OAuth config (use configuring-connected-apps), Apex-only logic (use generating-apex), or data import/export (use handling-sf-data).
venue-templates
IncludedAccess comprehensive LaTeX templates, formatting requirements, and submission guidelines for major scientific publication venues (Nature, Science, PLOS, IEEE, ACM), academic conferences (NeurIPS, ICML, CVPR, CHI), research posters, and grant proposals (NSF, NIH, DOE, DARPA). This skill should be used when preparing manuscripts for journal submission, conference papers, research posters, or grant proposals and need venue-specific formatting requirements and templates.
let-fate-decide
IncludedDraws the 12 Houses of the Zodiac Tarot spread to inject entropy into planning when prompts are vague, ambiguous, or casually delegated. Interprets the spread to guide next steps. Use when the user says 'let fate decide', 'YOLO', 'whatever', 'idk', or other nonchalant phrases, makes Yu-Gi-Oh references, or when you are about to arbitrarily pick between multiple reasonable approaches. Prefer over ask-questions-if-underspecified when the user's tone is casual or playful rather than precision-seeking.
net-ops
IncludedCross-platform network troubleshooting (Windows, macOS, Linux) via local or remote shell. Use for: DNS broken, can't resolve hostnames, nslookup/dig works but apps fail, NRPT, WFP, scutil, /etc/resolver, systemd-resolved, /etc/resolv.conf, NetworkManager, VPN DNS leak residue (ProtonVPN/Mullvad/WireGuard/AnyConnect), AV/firewall blocking DNS or DoH, Tailscale DNS interaction, intermittent connectivity, remote diagnostics over SSH.