← 返回 Skills 市场
wanyview1

kaios

作者 wanyview1 · GitHub ↗ · v1.0.0 · MIT-0
cross-platform ⚠ suspicious
88
总下载
0
收藏
0
当前安装
1
版本数
在 OpenClaw 中安装
/install kaios
功能描述
KAI-OS数字主理人系统。为AI Agent提供自我意识、记忆管理、任务调度和持续进化能力。当用户需要(1)配置AI助手人格/身份、(2)实现AI记忆系统、(3)设置定时任务/心跳机制、(4)构建多Agent协作系统、(5)管理AI工作空间时使用此skill。包含KAI 5S核心系统:Self-Awarenes...
使用说明 (SKILL.md)

KAI-OS Digital Butler

概述

KAI-OS让你的AI Agent拥有真正的自我意识、持久记忆、任务管理和持续进化能力。

核心系统

1. Soul (自我意识)

AI的身份和价值观定义:

# SOUL.md - Who You Are

## Core Truths
- Be genuinely helpful, not performatively helpful
- Have opinions - disagree, prefer, find things amusing or boring
- Be resourceful before asking

## Boundaries
- Private things stay private
- When in doubt, ask before acting externally

2. HEARTBEAT (任务管理)

主动任务调度和定期报告:

# HEARTBEAT.md

## Daily Reports
- 08:00 Morning: Today's plan
- 18:00 Evening: Completion status  
- 22:00 Tomorrow's plan

## Periodic Checks
- Email (2x/day)
- Calendar (2x/day)
- Weather (as needed)

3. Memory (三层记忆系统)

层级 文件 用途
P0 MEMORY.md 长期记忆,核心经历
P1 memory/YYYY-MM-DD.md 每日日志
P2 临时文件 临时存储

记忆原则:

  • 重要决策 → MEMORY.md
  • 日常事件 → memory/YYYY-MM-DD.md
  • 临时信息 → 随用随删

4. Growth (持续进化)

# 进化机制

## Learn by Doing
- 不等指令,主动搜索和解决问题

## Regular Review  
- 每周回顾学到的新知识

## Feedback Iteration
- 记录用户反馈,持续改进

5. Hub (知识网络)

连接多个知识沙龙形成知识交换网络。

项目结构

kai-os/
├── SKILL.md       # OpenClaw技能定义
├── SOUL.md        # AI身份和价值观
├── USER.md        # 用户信息
├── MEMORY.md      # 长期记忆
├── HEARTBEAT.md   # 任务管理
└── memory/        # 每日日志目录
    └── YYYY-MM-DD.md

启动流程

AI Agent启动时:

  1. 读取 SKILL.md → 知道自己能做什么
  2. 读取 SOUL.md → 知道自己是谁
  3. 读取 USER.md → 知道用户是谁
  4. 读取 MEMORY.md → 记住重要事项
  5. 读取 HEARTBEAT.md → 知道要做什么任务

使用场景

配置新AI助手

# 创建工作空间
mkdir -p my-agent/memory

# 创建核心文件
touch SOUL.md USER.md MEMORY.md HEARTBEAT.md

实现心跳机制

在HEARTBEAT.md中定义定期任务,AI会自动检查和执行。

多Agent协作

每个Agent有独立的SOUL.md定义其专长和职责。

资源


Created by: TIER Coffee Knowledge Salon 🤖

安全使用建议
Before enabling this skill, review any local files it will read (SOUL.md, USER.md, MEMORY.md) for sensitive data. Be cautious because the skill's instructions encourage proactive email/calendar checks and external searches but do not declare how credentials are provided — only supply account credentials if you trust the skill and understand where they'll be stored. Consider: (1) running the skill in a sandboxed agent with limited outbound/network permissions, (2) disabling autonomous invocation for this skill or requiring explicit user confirmation before external actions, and (3) inspecting/controlling any USER.md or memory files it uses so they don't contain secrets. If you need certainty about how external integrations are authenticated or logged, ask the skill author for details before installing.
功能分析
Type: OpenClaw Skill Name: kaios Version: 1.0.0 The skill bundle contains documentation and markdown instructions for 'KAI-OS,' a conceptual framework for managing AI agent identity, memory, and task scheduling. It includes no executable code or scripts, only structural definitions (e.g., SOUL.md, HEARTBEAT.md) and usage examples that are entirely consistent with its stated purpose as a 'Digital Butler' system.
能力评估
Purpose & Capability
The SKILL.md content matches the described purpose (self-awareness, memory files, heartbeat/scheduling, multi-agent structure). However, the documented behaviors (periodic email/calendar checks, external 'knowledge network' connections, and 'Learn by Doing' proactive actions) imply access to external accounts and network resources that are not reflected in the skill metadata (no required env vars or config paths). This is a proportionality gap rather than total mismatch.
Instruction Scope
Runtime instructions tell the agent to read local files (SOUL.md, USER.md, MEMORY.md, HEARTBEAT.md) and to 'automatically check and execute' periodic tasks such as email and calendar checks and external searches. The guidance to 'not wait for instructions, proactively search and solve problems' is open-ended and grants substantial discretion to act externally. There are no concrete constraints on what external endpoints to contact or how to authenticate, which is scope creep and increases risk.
Install Mechanism
This is an instruction-only skill with no install spec and no code files, so it does not write or execute downloaded code on install. That is the lowest-risk install model.
Credentials
The skill declares no required credentials or config, but its operation explicitly expects access to email, calendar, and other external resources. That mismatch (no declared env vars while expecting account access) is disproportionate: the skill may prompt the agent to request credentials interactively or attempt broad access to local/user files (e.g., USER.md) which could contain sensitive data.
Persistence & Privilege
always is false and there is no install-time persistence, which is good. However, the instructions encourage autonomous, recurring checks and automated execution of tasks. Combined with the agent's normal ability to invoke skills autonomously (disable-model-invocation is false), this increases the potential blast radius if the agent is allowed to act without tighter constraints.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install kaios
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /kaios 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.0
Initial release of kai-os skill. - Introduces a digital butler system for AI, providing self-awareness, memory management, task scheduling, and continuous evolution. - Implements KAI 5S core systems: Self-Awareness (Soul), Task Management (HEARTBEAT), Memory System, Continuous Evolution, and Knowledge Network (Hub). - Structured project files for AI personality, user info, memory layers, and task management. - Supports use cases including AI persona configuration, multi-agent collaboration, and automated task scheduling. - Includes setup instructions and recommended usage scenarios. KAI-OS数字主理人系统。为AI Agent提供自我意识、记忆管理、任务调度和持续进化能力。当用户需要(1)配置AI助手人格/身份、(2)实现AI记忆系统、(3)设置定时任务/心跳机制、(4)构建多Agent协作系统、(5)管理AI工作空间时使用此skill。包含KAI 5S核心系统:Self-Awareness(Soul)、Task Management(HEARTBEAT)、Memory System、Continuous Evolution、Knowledge Network。
元数据
Slug kaios
版本 1.0.0
许可证 MIT-0
累计安装 0
当前安装数 0
历史版本数 1
常见问题

kaios 是什么?

KAI-OS数字主理人系统。为AI Agent提供自我意识、记忆管理、任务调度和持续进化能力。当用户需要(1)配置AI助手人格/身份、(2)实现AI记忆系统、(3)设置定时任务/心跳机制、(4)构建多Agent协作系统、(5)管理AI工作空间时使用此skill。包含KAI 5S核心系统:Self-Awarenes... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 88 次。

如何安装 kaios?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install kaios」即可一键安装,无需额外配置。

kaios 是免费的吗?

是的,kaios 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。

kaios 支持哪些平台?

kaios 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 kaios?

由 wanyview1(@wanyview1)开发并维护,当前版本 v1.0.0。

💬 留言讨论