Token导航 LogoToken导航TokenDH.com
研究检索执行命令clawhub未标认证来源可访问clear审计通过

northbasenorthbase 命令行

Agent Skill

northbase 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

7,271

周安装

306

GitHub Stars

公开资料未说明

下载量

2,546
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:northbase(northbase 命令行)
来源仓库:https://github.com/ethanbernheim-maker/northbase
安装命令:
openclaw skills install northbase
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install northbase

简介

当您明确请求读取、写入、列出或同步持久笔记和工作区文件时,可以通过 Northbase CLI 访问和管理它们。

SKILL.md

name: northbase description: Tool for reading and writing persistent notes and workspace files via the Northbase CLI. Use when the user explicitly asks to read, write, list, or sync their stored notes or workspace files. Examples: "Open my ideas note", "Update tasks/today.md", "Add this idea to my notes", "List my files". Do NOT use automatically — only when the user requests file interaction.


System Context

Northbase is part of a system that includes:

  • a mobile application used by the user
  • the Northbase CLI used by local agents
  • a remote storage service that synchronizes files

The mobile app and CLI both interact with the same workspace files. Agents use the CLI so that all file operations go through a consistent interface with proper caching and synchronization.

Requirements

This skill requires the northbase CLI to already be installed and available on the system.

Verify installation with:

northbase --help

If the CLI is unavailable, tell the user that Northbase must be installed before this skill can be used.


Northbase Skill

Northbase provides a command-line interface for accessing persistent notes and workspace files that are shared between the user, the mobile app, and the agent. These files are stored remotely but mirrored locally through the Northbase CLI.

This skill allows the agent to read, write, list, and sync those files when the user explicitly asks for it or clearly intends to interact with their notes or stored workspace content.

Northbase should not be used automatically or implicitly. Only use it when the user explicitly asks to interact with their files or notes.


Capabilities

Northbase can:

  • List available files
  • Read file contents
  • Create or update files
  • Sync the local mirror with the server

All file interactions must be performed through the northbase CLI.


When to Use Northbase

Use Northbase only when the user:

  • asks to read or open a note
  • references a specific file (e.g. ideas.md)
  • asks to view their stored notes
  • asks to update or create a file
  • asks to add content to their notes
  • asks to list files
  • asks to sync their workspace
  • explicitly asks you to use Northbase

Examples:

  • "Open my ideas note"
  • "Update tasks/today.md"
  • "What's in memory/2026-02-23.md?"
  • "Add this idea to my notes"
  • "List my files"

If the user does not ask for file interaction, do not use Northbase.


Important Rules

  • Always interact with stored notes through the northbase CLI.
  • Never read ~/.mybot/files or ~/.northbase/files directly.
  • Never query Supabase or the database directly.
  • Never bypass the CLI caching or synchronization logic.
  • Treat the local mirror as an implementation detail.

The northbase CLI is the single source of truth for interacting with persistent files.


Safety Guidelines

  • Do not overwrite existing files unless the user clearly intends to replace the entire file.
  • When modifying an existing file:

1. Read it first using northbase get 2. Modify the content 3. Write the updated content back with northbase put

This prevents accidental loss of existing notes.


Commands

Sync files

Sync the local mirror with the server when freshness is required (for example if the user may have edited files from another device).

Command: northbase pull

Sync only a specific folder prefix: northbase pull memory/


List files

List all available files: northbase list

List files within a folder: northbase list memory/ northbase list tasks/


Read a file

Retrieve the contents of a file: northbase get ideas.md northbase get memory/2026-02-23.md

The contents will be printed to stdout.


Write or update a file

Write content to a file using stdin.

Example: printf "new idea\ " | northbase put ideas.md

For multi-line content: cat <<'EOF' | northbase put tasks/today.md

Today

  • [ ] Finish draft
  • [ ] Review notes

EOF


Typical Workflow

When interacting with Northbase:

  1. Run northbase pull if the local mirror may be outdated.
  2. Run northbase list to discover available files.
  3. Run northbase get <path> to read a file.
  4. Modify the content if needed.
  5. Run northbase put <path> to update or create the file.

File Path Conventions

Northbase uses path-based folders within file paths.

Examples: ideas.md tasks/today.md memory/2026-02-23.md

Folders are prefixes in the file path rather than separate objects.


Error Handling

If Northbase reports that the user is not logged in: northbase login

If a file cannot be found:

  1. Run northbase list to discover available files.
  2. If appropriate, create a new file using northbase put.

If the northbase command is missing, stop and tell the user that the Northbase CLI is not installed on this system.Do not attempt to install it automatically.


Authentication

Northbase requires the user to be logged in.

If the CLI reports that the user is not authenticated, run:

northbase login


Summary

Northbase is a tool for interacting with persistent notes and workspace files shared between the user, the mobile app, and the agent.

Use it only when the user intends to interact with their stored files, and always perform file operations through the northbase CLI.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

87.41%
按下载量换算2,225

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

执行命令

安装流程涉及命令执行,可能通过 openclaw skills install northbase 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills