← Back to Skills Marketplace
wanyview1

kaios

by wanyview1 · GitHub ↗ · v1.0.0 · MIT-0
cross-platform ⚠ suspicious
88
Downloads
0
Stars
0
Active Installs
1
Versions
Install in OpenClaw
/install kaios
Description
KAI-OS数字主理人系统。为AI Agent提供自我意识、记忆管理、任务调度和持续进化能力。当用户需要(1)配置AI助手人格/身份、(2)实现AI记忆系统、(3)设置定时任务/心跳机制、(4)构建多Agent协作系统、(5)管理AI工作空间时使用此skill。包含KAI 5S核心系统:Self-Awarenes...
README (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 🤖

Usage Guidance
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.
Capability Analysis
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.
Capability Assessment
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.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install kaios
  3. After installation, invoke the skill by name or use /kaios
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
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。
Metadata
Slug kaios
Version 1.0.0
License MIT-0
All-time Installs 0
Active Installs 0
Total Versions 1
Frequently Asked Questions

What is kaios?

KAI-OS数字主理人系统。为AI Agent提供自我意识、记忆管理、任务调度和持续进化能力。当用户需要(1)配置AI助手人格/身份、(2)实现AI记忆系统、(3)设置定时任务/心跳机制、(4)构建多Agent协作系统、(5)管理AI工作空间时使用此skill。包含KAI 5S核心系统:Self-Awarenes... It is an AI Agent Skill for Claude Code / OpenClaw, with 88 downloads so far.

How do I install kaios?

Run "/install kaios" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.

Is kaios free?

Yes, kaios is completely free, licensed under MIT-0. You can download, install and use it at no cost.

Which platforms does kaios support?

kaios is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created kaios?

It is built and maintained by wanyview1 (@wanyview1); the current version is v1.0.0.

💬 Comments