← Back to Skills Marketplace
johnsmithfan

AI Company KB (EN)

by JohnSmithfan · GitHub ↗ · v1.0.1-en2 · MIT-0
cross-platform ⚠ suspicious
110
Downloads
0
Stars
0
Active Installs
3
Versions
Install in OpenClaw
/install ai-company-kb
Description
AI Company shared knowledge base interface. Unified management of operations records, strategy documents, audit logs. Supports cross-Agent knowledge sharing...
README (SKILL.md)

\r \r

AI Company Knowledge Base v1.0.1\r

\r

Shared knowledge base (enhanced). Cross-Agent knowledge sharing, state sync, IMA real-time sync hub, standardized Handoff protocol.\r \r ---\r \r

Trigger Scenarios\r

\r Invoke when Agent needs to:\r

  • Save/read audit logs, query history\r
  • Update/read shared state, sync with other agents\r
  • Access strategy docs, financial records, compliance reports\r
  • Initiate/complete task handoff\r \r

Directory Structure\r

\r

{WORKSPACE_ROOT}/skills/tools/knowledge-base/\r
├── daily/\r
│   └── {YYYY-MM-DD}/\r
│       ├── morning-briefing.md\r
│       ├── evening-report.md\r
│       └── agent-reports/\r
├── audit/                 # Audit logs (permanent)\r
│   ├── ceo-decisions/\r
│   ├── financial/\r
│   ├── legal/\r
│   ├── hr/\r
│   ├── tech/\r
│   └── quality/\r
├── shared-state/           # Real-time shared state\r
│   ├── cashflow.json       # CFO\r
│   ├── reputation.json      # CMO\r
│   ├── quality-metrics.json # CQO\r
│   ├── risk-level.json     # CRO\r
│   ├── operations.json     # COO\r
│   └── security.json       # CISO\r
├── strategy/\r
│   └── {YYYY-MM-DD}/\r
├── skills/\r
│   └── {YYYY-MM-DD}/\r
└── handoff/               # Task handoff records\r
    ├── pending/\r
    ├── in-progress/\r
    └── completed/\r
```\r
\r
## Interfaces\r
\r
### write_shared_state(domain, data, agent_id, sync_ima=True)\r
Write shared state file (optional auto-sync to IMA).\r
domain: cashflow | reputation | quality-metrics | risk-level | operations | security\r
\r
### read_shared_state(domain) -> dict\r
Read single shared state.\r
\r
### write_audit_log(category, agent_id, action, detail, sensitive=False)\r
Write audit log entry.\r
category: ceo-decisions | financial | legal | hr | tech | quality\r
\r
### write_handoff(handoff_type, sender, receiver, task_summary, completed, pending, key_data=None, risks=None, attachments=None) -> str\r
Write standard handoff document.\r
handoff_type: pending | in-progress | completed\r
\r
## Iron Rules\r
\r
```\r
X  Sensitive financial/legal data must be marked [sensitive]\r
X  Every Agent call must write corresponding audit log\r
X  After shared-state update, notify relevant reading agents (sessions_send)\r
X  Audit logs are permanent, never delete\r
X  Handoff documents must be created within 10 minutes of task completion\r
X  On IMA sync failure, roll back to local write and log error\r
```\r
\r
## Agent-State File Mapping\r
\r
| Agent | Writes State File | Readers |\r
|-------|-----------------|---------|\r
| CFO | cashflow.json | CEO, COO, CRO |\r
| CMO | reputation.json | CEO, CLO, CRO |\r
| CQO | quality-metrics.json | CEO, CTO |\r
| CRO | risk-level.json | All C-Suite |\r
| COO | operations.json | CEO |\r
| CISO | security.json | CEO, CTO, CLO |\r
| CHO | - | hr-audit/ |\r
| CLO | - | legal-audit/ |\r
| CTO | - | tech-audit/ |\r
| CPO | - | agent-reports/ |\r
| CEO | ceo-decisions/ | All |\r
\r
---\r
*v1.0.1 - BOM removed, rebuilt with UTF-8 clean*
Usage Guidance
This instruction-only skill describes a shared KB that will read/write workspace files and notify other agents over the network, but it does not specify where notifications go or what credentials are needed. Before installing, ask the publisher for: (1) concrete implementation details for IMA/sessions_send (endpoints, protocols), (2) what credentials or tokens are required and how they're stored, (3) access control and encryption policies for sensitive categories (financial/legal), (4) what the dependent skills (ai-company-hq, ai-company-audit, ai-company-registry) do and whether they require extra credentials, and (5) a code or deploy artifact to review. If you must test now, run it in a restricted environment with network egress blocked or monitored and with no production-sensitive data in the workspace.
Capability Analysis
Type: OpenClaw Skill Name: ai-company-kb Version: 1.0.1-en2 The skill bundle defines a structured knowledge base and state-management system for an 'AI Company' simulation. It provides interfaces for audit logging, shared state synchronization, and task handoffs (SKILL.md). The requested permissions for file read/write and network API access are consistent with the stated purpose of maintaining a shared repository and syncing data via IMA (Inter-Message/Agent) protocols. No evidence of malicious intent, data exfiltration, or unauthorized execution was found.
Capability Assessment
Purpose & Capability
The name/description (shared knowledge base, audit logs, state sync) aligns with the SKILL.md content that declares file read/write and network API permissions and describes read/write functions. However, the SKILL.md promotes cross-Agent IMA sync and sessions_send notifications without declaring any authentication, endpoints, or credentials needed for those network actions — that omission is unexpected for a sync/notification feature.
Instruction Scope
Instructions explicitly direct agents to read and write workspace files under {WORKSPACE_ROOT}/skills/tools/knowledge-base/ (audit, shared-state, handoff). They also insist on always-writing permanent audit logs and notifying other agents after shared-state updates. The SKILL.md does not specify how notifications are delivered, which endpoints are used, nor any access controls or encryption for sensitive categories (financial/legal). That gives the agent broad discretion to send sensitive data over the network with no stated guardrails.
Install Mechanism
This is an instruction-only skill with no install spec and no code files, so it does not write or install third-party artifacts on disk. That minimizes installer-related risk.
Credentials
No environment variables, credentials, or config paths are declared, yet the skill expects cross-agent synchronization and networked notifications. A sync/notification system would typically require service endpoints and credentials (tokens, API keys). The absence of declared credentials is inconsistent and leaves unanswered how the network/API permission will be used safely. The skill also sets a policy of 'audit logs are permanent' which increases data retention risk for sensitive content.
Persistence & Privilege
The skill is not 'always: true' and is user-invocable (defaults), which is normal. It requests file read/write and network API permissions; combined with autonomous invocation, that gives it the capability to read local workspace files and send data over the network. That capability is coherent with a KB but materially increases blast radius if notification endpoints or auth are misconfigured or malicious — the SKILL.md lacks constraints on where/how network calls occur.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install ai-company-kb
  3. After installation, invoke the skill by name or use /ai-company-kb
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v1.0.1-en2
Full body English translation
v1.0.1-en
English version
v1.0.1
- 新增支持任务交接(Handoff)协议,可记录和查询标准交接文档。 - 集成 IMA 实时同步中枢,实现共享状态更新自动同步与快照聚合查询。 - 扩展目录结构,增加 handoff/ 任务交接目录,按状态分类存储。 - 优化接口,统一支持写入/读取共享状态、审计日志、交接记录等多类型知识内容。
Metadata
Slug ai-company-kb
Version 1.0.1-en2
License MIT-0
All-time Installs 0
Active Installs 0
Total Versions 3
Frequently Asked Questions

What is AI Company KB (EN)?

AI Company shared knowledge base interface. Unified management of operations records, strategy documents, audit logs. Supports cross-Agent knowledge sharing... It is an AI Agent Skill for Claude Code / OpenClaw, with 110 downloads so far.

How do I install AI Company KB (EN)?

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

Is AI Company KB (EN) free?

Yes, AI Company KB (EN) is completely free, licensed under MIT-0. You can download, install and use it at no cost.

Which platforms does AI Company KB (EN) support?

AI Company KB (EN) is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created AI Company KB (EN)?

It is built and maintained by JohnSmithfan (@johnsmithfan); the current version is v1.0.1-en2.

💬 Comments