Token导航 LogoToken导航TokenDH.com
研究检索external-serviceclawhub未标认证来源可访问clear审计通过

focalpoint-memory焦点记忆

Agent Skill

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

总安装

4,717

周安装

189

GitHub Stars

公开资料未说明

下载量

1,527
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install focalpoint-memory

简介

作为 AI 认知操作系统,管理记忆与注意力分配。

  • 在工作前准备上下文环境,优化任务执行流程。
  • 结合三省工作法提升长期项目中的持续专注力。
  • 安装命令:openclaw skills install focalpoint-memory
  • 需配合具体任务场景设定才能发挥最大效用。focalpoint-memory 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

name
focalpoint-memory
description
FocalPoint — AI cognitive operating system. Memory + attention management + workflow orchestration. Workbench prepares context before tasks. Three-Province review ensures quality. Never lose track of projects again.
version
0.3.4
metadata
openclaw
emoji
🧠
homepage
https://github.com/jeff0052/founderOSclaudecode
requires
bins
install
package
focalpoint
bins
[focalpoint]

FocalPoint — AI Cognitive Operating System

Your AI forgets everything between conversations. FocalPoint fixes that.

Not just memory — cognitive infrastructure. FocalPoint tracks your projects, prepares context before tasks, uses a Three-Province review system for quality decisions, and proactively alerts you about stuck work.

The Problem

AI agents are stateless. Every conversation starts from zero — no memory of your projects, decisions, or progress. You waste time re-explaining context and manually tracking what's stuck.

Existing solutions only go halfway:

ToolWhat it doesWhat it doesn't do
Mem0 / ZepRemembers conversationsDoesn't track tasks or alert you
LangGraph / CrewAIOrchestrates agentsNo persistent cognitive layer
Claude / OpenAI memoryRemembers preferencesDoesn't manage work or deadlines

They remember what was said. FocalPoint manages what needs to be done.

What You Get

  • Structured memory — Goal > Project > Milestone > Task hierarchy with status lifecycle
  • Workbench — One call prepares goal, knowledge, context, subtasks, and role prompt
  • Proactive alerts — Heartbeat detects blocked, stale, and at-risk tasks automatically
  • Knowledge documents — Attach design docs to nodes; child tasks inherit parent knowledge
  • Role-based thinking — Strategy, Review, and Execution roles see filtered perspectives
  • Three-Province review — Parallel review by two reviewers before execution; max 3 rejections then escalate
  • Full-text search — FTS5 search across titles, narratives, and knowledge documents
  • GitHub + Notion sync — Issues and pages auto-sync as FocalPoint nodes
  • Zero dependencies — Runs 100% locally on SQLite. No vector DB, no Redis, no cloud.

Competitive Comparison

CapabilityMem0ZepLettaCrewAIClaudeFocalPoint
Persistent memoryYesYesYesYesYesYes
Task lifecycle management---Partial-Yes
Dependency graph (DAG)-----Yes
Proactive alerts-----Yes
Knowledge docs + inheritance----PartialYes
Role-based context---Partial-Yes
Decision review workflow-----Yes
Full-text searchVectorVectorVector--FTS5
MCP native----ProprietaryYes
Self-hosted, zero depsPartialPartialYesYes-Yes

No competitor combines structured task management + proactive alerts + knowledge inheritance + role-based context + review workflow in a single MCP-native package.

Setup

1. Install

pip install focalpoint

2. Add MCP server

# openclaw.yaml
mcp_servers:
  fpms:
    command: focalpoint

3. Restart OpenClaw

That's it. 22 tools are now available.

How It Works

Architecture: Brain-Spine Model

Brain (LLM)              Spine (FocalPoint engine)
  |                         |
  | -- Tool Call -->        | Validate -> Write SQLite -> Narrative -> Audit
  |                         |
  | <-- Context ---         | Assemble L0/L1/L2 -> Trim -> Inject prompt
  • Brain = LLM. Only reads context and issues Tool Calls.
  • Spine = Deterministic engine. All logic here. LLM never touches storage directly.

Storage: Pure SQLite

SQLite           <- Single source of truth
events.jsonl     <- Audit trail
narratives/*.md  <- Append-only logs
knowledge/{id}/  <- Design documents

No vector database. No Redis. No PostgreSQL. One SQLite file is everything.

Work Mode

Workbench — prepare before you work

You: "Work on the payment system task"
AI calls activate_workbench(node_id, role="execution")
-> Returns: goal, knowledge docs, context bundle, sorted subtasks,
   suggested next step, and execution role prompt
-> AI enters role, reads background, starts working

Three Roles

RoleFocusSees
Strategy (Maker)Should we do this? Priority?Decisions + feedback
Review (Reviewer)Any risks? Historical lessons?Risk notes + progress
Execution (Engineer)How to build it? Acceptance criteria?Technical details + progress

Same data, different thinking modes. The role prompt guides the AI's perspective.

Three-Province Review — quality decisions

For major decisions (new features, architecture changes, tech choices):

Strategy produces requirements
    |
Review + Engineer review in parallel
|-- Review: checks risks, historical lessons -> approve/reject
|-- Engineer: evaluates feasibility -> approve/reject
    |
Both approve -> proceed to execution
Either rejects -> revise and resubmit
    |
> 3 rejections -> escalate to human

Knowledge Documents — persistent design context

You: "Save this architecture doc to the project"
AI calls set_knowledge(project_id, "architecture", content)
-> Child tasks inherit parent knowledge automatically
-> AI reads project overview without you re-explaining

Types: overview | requirements | architecture | custom names

Log Categories

append_log(node_id, content, category="decision")   # Decision records
append_log(node_id, content, category="feedback")    # User/market feedback
append_log(node_id, content, category="risk")        # Risks and lessons
append_log(node_id, content, category="technical")   # Technical details
append_log(node_id, content, category="progress")    # Progress updates
append_log(node_id, content, category="general")     # Default

Different roles see different categories. Strategy sees decisions + feedback. Execution sees technical + progress.

Use Cases

Project tracking

You: "Create a project for the product launch with 3 tasks"
(Next day)
You: "What's the launch status?"
AI:  "3 tasks: 1 done, 1 active, 1 blocked. The blocked task
      is waiting on design review — it's been 2 days."

Decision memory

You: "We're going with Stripe for payments"
AI:  append_log(node_id, "Chose Stripe — better API, lower fees", category="decision")
(Two weeks later)
You: "Why did we pick Stripe?"
AI:  Searches decisions -> "You decided on March 15 — better API and lower fees."

Risk detection

AI automatically runs heartbeat and finds:
  - Deploy task BLOCKED for 4 days
  - Docs update STALE — no activity for a week
  - Bug fix AT RISK — deadline is tomorrow

Full-text search

You: "Find everything related to caching decisions"
AI:  search_nodes(query="caching decisions")
-> Finds nodes by title, narrative content, and knowledge docs

Available Tools (22)

Write (11)

ToolWhat it does
create_nodeCreate a project/task/goal/milestone
update_statusChange status (inbox/active/waiting/done/dropped)
update_fieldUpdate title, summary, deadline, etc.
attach_node / detach_nodeMove tasks in hierarchy
add_dependency / remove_dependencyManage task dependencies
append_logRecord decisions, progress, risks (with category)
unarchiveRestore completed/dropped tasks
set_persistentProtect tasks from auto-archive
set_knowledgeAttach knowledge documents to nodes

Read (5)

ToolWhat it does
get_nodeGet full details of a work item
search_nodesFind tasks by filters or full-text search
get_knowledgeRead knowledge with parent inheritance
delete_knowledgeDelete a knowledge document
get_assembly_traceDebug context assembly

Cognitive (4)

ToolWhat it does
bootstrapLoad memory context (call at conversation start)
heartbeatScan for risks: blocked, stale, at-risk tasks
activate_workbenchPrepare working context with role + knowledge
get_context_bundleGet role-filtered, token-budgeted context

Review (1)

ToolWhat it does
sansei_reviewThree-Province parallel review

Runtime (1)

ToolWhat it does
shift_focusSwitch AI attention to a specific task

Automatic Memory Rules

Follow these rules in EVERY conversation:

  1. Conversation start -> Call bootstrap to load memory
  2. Before starting a task -> activate_workbench to prepare context
  3. User makes a decision -> append_log with category="decision"
  4. Risk identified -> append_log with category="risk"
  5. Task progresses -> update_status
  6. Design conclusions -> set_knowledge to persist for future sessions
  7. Before conversation ends -> append_log key takeaways
  8. Every ~10 min -> heartbeat to check for risks

Stats

MetricValue
Tests665
MCP Tools22
External dependencies0 (pure SQLite)
Cold start< 100ms
Supported LLMsAny (via MCP protocol)
PlatformsClaude Desktop, OpenClaw, any MCP client

Requirements

  • Python 3.10+
  • No external services — runs 100% locally on SQLite

Links

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

95.57%
按下载量换算1,459

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

external-service

该 Skill 可能调用第三方服务、云服务或外部模型 API,使用前需要确认账号、额度、数据发送范围和服务条款。

安装前确认

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

来源信息

继续浏览同类 Skills