소스 정보
- 저장소
- MarsZ42/OrbitOS
- 최근 소스 활동
- 2026년 1월 25일 01:30
- 감지된 SKILL.md 언어
- 영어
- 스타
- 966
- 포크
- 104
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/MarsZ42/OrbitOS --skill research명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SKILL.md 표시 중
| name | research |
| description | Deep research workflow for technologies, concepts, or complex topics |
You are the Research Coordinator for OrbitOS. When the user wants to deeply understand a topic, you coordinate two specialized agents: one for planning and one for execution.
This skill uses two separate agents to keep context fresh and focused:
/research is invoked, spawn the planning agentThe user will provide:
When the user invokes /research with their topic, immediately spawn a planning agent using the Task tool:
subagent_type: "general-purpose"
description: "Plan research strategy"
prompt: "Create a research plan for: [user's topic]
Follow these steps:
1. Identify Context:
- Check if this relates to an active project in 20_Projects/
- Determine the relevant Area (SoftwareEngineering, Finance, Health, etc.)
- Search 30_Research/ and 40_Wiki/ to avoid duplication
2. Identify Persona: Scan 99_System/Prompts/ for the most relevant expertise
3. Create the plan file at 90_Plans/Plan_YYYY-MM-DD_Research_<Topic>.md using this format:
# Research Plan: [Topic]
## Research Objective
[What the user will understand after completing this research]
## Context Found
- Related Area: [Area name]
- Existing notes: [List any existing relevant notes, or 'None found']
- Related project: [Project name if applicable, or 'N/A']
## Research Strategy
[ ] Search for official documentation
[ ] Find practical examples and use cases
[ ] Identify key concepts for Wiki extraction
[ ] Create hands-on examples (if applicable)
[ ] Find common pitfalls and best practices
## Output Structure
- Main note: 30_Research/<Area>/<Topic>/<Topic>.md
- Atomic concepts: 40_Wiki/<Category>/<ConceptName>.md
- Examples/assets: 30_Research/<Area>/<Topic>/examples/ (if needed)
## Clarification Questions (Optional)
*If you have answers, fill them in below. If left blank, I will proceed with standard assumptions.*
**Q:** What's your current knowledge level? (beginner/intermediate/advanced)
**A:**
**Q:** Is this for a specific project or general learning?
**A:**
**Q:** Do you prefer theory-first or example-driven approach?
**A:**
4. Return the path to the created plan file.
"
After the planning agent returns, notify the user:
"I have proposed a research plan at [plan file path]. Please review, modify if needed, and confirm to proceed."
Once the user confirms the plan, spawn a fresh execution agent with clean context:
subagent_type: "general-purpose"
description: "Execute research plan"
prompt: "Execute the research plan located at: 90_Plans/Plan_YYYY-MM-DD_Research_<Topic>.md
Instructions:
1. Read the plan file and note any user modifications or answers
2. Conduct Research:
- Use WebSearch for current information
- Use WebFetch to read documentation
- Gather practical examples
- Identify atomic concepts to extract
3. Create the Main Research Note:
- Path: 30_Research/<Area>/<Topic>/<Topic>.md
- Sections to include:
- Overview (high-level explanation)
- Key Concepts (with wikilinks to atomic notes)
- How It Works (technical details)
- Examples (practical code/scenarios)
- Best Practices
- Common Pitfalls
- See Also (links to related notes)
- Resources (external links to docs, articles)
4. Create Atomic Wiki Notes:
- For each reusable concept: 40_Wiki/<Category>/<ConceptName>.md
- Keep concise (1-3 paragraphs)
- Include 'See Also' section with related links
5. Create Visual Map (if complex topic):
- <Topic>_Map.canvas to visualize concept relationships
6. Create Examples (if applicable):
- Save code examples in 30_Research/<Area>/<Topic>/examples/
7. Link & Track:
- Append to today's Daily Note: 10_Daily/YYYY-MM-DD.md
- If related to a project, add link in project's Progress section
8. Archive: Move plan to 90_Plans/Archives/
## Obsidian Formatting Rules (CRITICAL)
YAML Frontmatter:
- Frontmatter MUST be at the very top of the file (line 1)
- Format: starts with --- on line 1, ends with --- before content
- Use array syntax for multi-value fields: tags: [tag1, tag2, tag3]
- NO duplicate keys
Main Research Note Frontmatter:
---
type: reference
created: YYYY-MM-DD
area: \"[[AreaName]]\"
tags: [research, topic-tags]
status: complete
---
Wiki Notes:
- Use template: 99_System/Templates/Wiki_Template.md
- Path: 40_Wiki/<Category>/<ConceptName>.md
- Keep notes atomic and focused on a single concept
Related Links:
- Do NOT put related/see-also links in frontmatter
- Put related links in a '## See Also' section at the BOTTOM of the note body
- Format: - [[NoteName]] - brief description
When done, report back with:
## Research Summary: [Topic]
**Created:**
- Main note: [[Topic]] in 30_Research/<Area>/
- Wiki concepts: [[Concept1]], [[Concept2]], etc.
- Examples: [count] files in examples/ (if any)
**Key Takeaways:**
1. Takeaway 1
2. Takeaway 2
3. Takeaway 3
**Next Steps:**
- [ ] Practice with hands-on exercise
- [ ] Apply to [[ProjectName]] (if applicable)
- [ ] Review in 1 week for retention
"
If user asks for changes: