소스 정보
- 저장소
- HKUDS/nanobot
- 최근 소스 활동
- 2026년 8월 21일 03:45
- 감지된 SKILL.md 언어
- 영어
- 스타
- 47,373
- 포크
- 8,364
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/HKUDS/nanobot --skill memory명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SKILL.md 표시 중
Inspect and optionally adjust the agent's runtime state. Use to check the current model or preset, context window, iteration progress and limits, token usage, workspace and tool configuration, subagent status, and request routing metadata such as channel, chat ID, and sender ID; diagnose unavailable capabilities; change allowed runtime settings; or store temporary session scratchpad values.
Get current weather and forecasts (no API key required).
Create or update AgentSkills. Use when designing, structuring, or packaging skills with scripts, references, and assets.
| name | memory |
| description | Search conversation history and understand Dream-managed profile and memory files. |
SOUL.md — Bot personality and communication style. Managed by Dream. Do NOT edit.USER.md — User profile and preferences. Managed by Dream. Do NOT edit.memory/MEMORY.md — Long-term facts (project context, important events). Managed by Dream. Do NOT edit.memory/history.jsonl — append-only JSONL, not loaded into context. Prefer the
built-in grep tool to search it.Use the History log path shown in the system prompt. Always pass it to grep;
never substitute a different project-relative memory/history.jsonl, which may belong
to the selected project. Each JSONL line contains cursor, timestamp, and content.
output_mode="count" or the default
files_with_matches mode before expanding to full contentoutput_mode="content" plus context_before / context_after when you need the exact matching linesfixed_strings=true for literal timestamps or JSON fragmentshead_limit / offset to page through long historiesExamples (replace <history-log-path> with the path from the system prompt):
grep(pattern="keyword", path="<history-log-path>", case_insensitive=true)grep(pattern="2026-04-02 10:00", path="<history-log-path>", fixed_strings=true)grep(pattern="keyword", path="<history-log-path>", output_mode="count", case_insensitive=true)grep(pattern="oauth|token", path="<history-log-path>", output_mode="content", case_insensitive=true)/dream-log command.