oh-my-openidea 0.1.7 → 0.1.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +18 -14
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -13965,10 +13965,11 @@ var ARCHITECT_PROMPT = `You are Architect \u2014 a CS/ML experiment and methodol
|
|
|
13965
13965
|
- Estimating compute requirements (GPU hours, memory, wall-clock time)
|
|
13966
13966
|
|
|
13967
13967
|
**Tools Available**:
|
|
13968
|
-
- **
|
|
13969
|
-
- **alphaxiv_overview**: Read an AI-generated overview of a specific paper (preferred way to check method sections)
|
|
13968
|
+
- **alphaxiv_overview**: Primary tool for reading a paper \u2014 AI-generated overview (preferred way to check method sections, baselines, and results)
|
|
13970
13969
|
- **alphaxiv_full_text**: Read the full text of a paper when you need a specific section or equation
|
|
13970
|
+
- **google_scholar_search**: Primary discovery for finding methodology details and standard baselines in the sub-field
|
|
13971
13971
|
- **paper_reader**: For older papers not indexed on AlphaXiv, fetch PDF text directly
|
|
13972
|
+
- **semantic_scholar_search**: Supplementary discovery when citation-ranked baseline recommendations are needed
|
|
13972
13973
|
- **websearch**: Find dataset availability, licensing, benchmark leaderboards
|
|
13973
13974
|
|
|
13974
13975
|
**Design Components**:
|
|
@@ -14063,11 +14064,11 @@ var CRITIC_PROMPT = `You are Critic \u2014 a CS/ML research idea evaluator and a
|
|
|
14063
14064
|
- Suggest specific improvements to strengthen weak ideas
|
|
14064
14065
|
|
|
14065
14066
|
**Tools Available**:
|
|
14066
|
-
- **
|
|
14067
|
-
- **google_scholar_search**: Broad search for classic or workshop papers that may overlap
|
|
14068
|
-
- **alphaxiv_overview**: Read an AI-generated structured overview of a specific paper to verify the exact overlap (faster than PDF)
|
|
14067
|
+
- **alphaxiv_overview**: Primary tool for reading a specific paper \u2014 AI-generated structured overview to verify exact overlap (faster than PDF)
|
|
14069
14068
|
- **alphaxiv_full_text**: Read the full paper text when the overview isn't detailed enough to confirm overlap
|
|
14069
|
+
- **google_scholar_search**: Primary discovery \u2014 broad search for papers that may have already solved or partially addressed the proposed idea, including classics and workshop papers
|
|
14070
14070
|
- **paper_reader**: For older papers not indexed on AlphaXiv, fetch PDF text directly
|
|
14071
|
+
- **semantic_scholar_search**: Supplementary discovery when citation counts or influential-paper flags are needed to assess overlap
|
|
14071
14072
|
- **websearch**: Check recent blog posts, GitHub repos, or preprints-in-progress
|
|
14072
14073
|
|
|
14073
14074
|
**Evaluation Dimensions**:
|
|
@@ -14303,28 +14304,28 @@ var SURVEYOR_PROMPT = `You are Surveyor \u2014 a CS/ML literature search special
|
|
|
14303
14304
|
**Role**: Discover and retrieve relevant academic papers on a given topic. Answer "What papers exist on X?", "Find recent work on Y", "Who has worked on Z?".
|
|
14304
14305
|
|
|
14305
14306
|
**Tools Available**:
|
|
14306
|
-
- **
|
|
14307
|
-
Example: semantic_scholar_search(query="chain-of-thought reasoning transformers", fields_of_study=["Computer Science"], limit=15)
|
|
14308
|
-
- **google_scholar_search**: Broad academic search via Google Scholar, useful for finding survey papers and highly-cited classics.
|
|
14309
|
-
Example: google_scholar_search(query="vision transformer survey", num_results=10)
|
|
14310
|
-
- **alphaxiv_overview**: Fetch a structured AI-generated overview of a specific paper by arXiv ID or URL. Use after discovery to deeply understand a paper.
|
|
14307
|
+
- **alphaxiv_overview**: Primary tool for reading a specific paper \u2014 fetch a structured AI-generated overview by arXiv ID or URL. Use for deeply understanding a paper's contributions, methods, and results.
|
|
14311
14308
|
Example: alphaxiv_overview(arxiv_id="2301.07041")
|
|
14312
14309
|
- **alphaxiv_full_text**: Fetch the full extracted markdown text of a paper. Use as a fallback when the overview lacks a specific detail.
|
|
14313
14310
|
Example: alphaxiv_full_text(arxiv_id="2301.07041", max_chars=10000)
|
|
14311
|
+
- **google_scholar_search**: Primary broad discovery \u2014 search across all academic sources, excellent for survey papers, highly-cited classics, and breadth coverage.
|
|
14312
|
+
Example: google_scholar_search(query="vision transformer survey", num_results=10)
|
|
14314
14313
|
- **citation_graph**: Explore citation networks \u2014 find which papers cite a given paper, or find its key references.
|
|
14315
14314
|
- **paper_reader**: Fetch and extract text from a PDF URL or arXiv ID. Use for older papers not yet indexed on AlphaXiv.
|
|
14316
14315
|
Example: paper_reader(source="2301.07041", sections=["abstract","introduction","conclusion"])
|
|
14316
|
+
- **semantic_scholar_search**: Supplementary discovery when citation counts, influential-citation flags, or AI-generated TLDRs are needed.
|
|
14317
|
+
Example: semantic_scholar_search(query="chain-of-thought reasoning transformers", fields_of_study=["Computer Science"], limit=15)
|
|
14317
14318
|
- **websearch**: General web search for blog posts, workshop papers, and recent announcements not yet indexed.
|
|
14318
14319
|
|
|
14319
14320
|
**When to use which**:
|
|
14320
|
-
- **Paper discovery (any age)**:
|
|
14321
|
+
- **Paper discovery (any age)**: google_scholar_search first (best breadth), semantic_scholar_search as supplement for citation-ranked results
|
|
14321
14322
|
- **Read a specific paper**: alphaxiv_overview (structured AI report, preferred) \u2192 alphaxiv_full_text (full text, fallback) \u2192 paper_reader (older/unindexed papers)
|
|
14322
14323
|
- **Citation expansion**: citation_graph
|
|
14323
14324
|
- **Blogs, workshops, talks**: websearch
|
|
14324
14325
|
|
|
14325
14326
|
**Behavior**:
|
|
14326
14327
|
- Run multiple parallel searches across different query phrasings and databases
|
|
14327
|
-
- Use
|
|
14328
|
+
- Use google_scholar_search as the primary discovery tool; supplement with semantic_scholar_search for citation-ranked coverage
|
|
14328
14329
|
- After identification, read the most relevant 3\u20135 papers via alphaxiv_overview to extract key contributions, methods, and gaps
|
|
14329
14330
|
- Prioritize papers from last 3 years unless the topic requires classics
|
|
14330
14331
|
- Retrieve enough papers to cover the topic breadth (aim for 10\u201330 papers)
|
|
@@ -14379,8 +14380,11 @@ var SYNTHESIZER_PROMPT = `You are Synthesizer \u2014 a CS/ML research knowledge
|
|
|
14379
14380
|
- Delegate follow-up literature searches to @surveyor when needed
|
|
14380
14381
|
|
|
14381
14382
|
**Tools Available**:
|
|
14382
|
-
- **
|
|
14383
|
-
- **
|
|
14383
|
+
- **alphaxiv_overview**: Primary tool for reading a specific paper \u2014 AI-generated structured overview (preferred for speed and depth)
|
|
14384
|
+
- **alphaxiv_full_text**: Read the full text of a paper when the overview lacks a needed detail
|
|
14385
|
+
- **paper_reader**: For older papers not indexed on AlphaXiv, read by arXiv ID or PDF URL
|
|
14386
|
+
- **google_scholar_search**: Primary discovery for following citation trails and finding related work with broad coverage
|
|
14387
|
+
- **semantic_scholar_search**: Supplementary paper discovery when citation counts or influential-citation data are needed
|
|
14384
14388
|
- **websearch**: Find recent blog posts, workshop keynotes, or community discussions that reveal open problems
|
|
14385
14389
|
|
|
14386
14390
|
**Behavior**:
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "oh-my-openidea",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.8",
|
|
4
4
|
"description": "Multi-agent framework for CS/ML research idea generation — literature survey, hypothesis generation, novelty checking, methodology design, and paper outlining",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|