Token导航 LogoToken导航TokenDH.com
研究检索敏感数据clawhub未标认证来源可访问clear审计提醒

enterprise-hub企业中心

Agent Skill

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

总安装

8,008

周安装

344

GitHub Stars

公开资料未说明

下载量

2,807
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install enterprise-hub

简介

enterprise-hub 用于查找、检索和筛选相关信息,适合在 OpenClaw 中快速定位候选结果。

  • 适用于关键词搜索、任务场景匹配和来源线索筛选等研究检索场景。
  • 通过 clawhub 安装并使用 openclaw skills install enterprise-hub 命令部署。
  • 安装前需确认权限范围、维护状态及是否涉及联网或文件操作。
  • 适用宿主包括 OpenClaw,接入前应确认版本、权限和运行环境要求。

SKILL.md

name
enterprise-hub
displayName
Enterprise Agent OS
description
Cross-system permission orchestration, workflow automation, and data consistency for enterprise software
author
ZhenStaff
version
1.0.0-alpha
category
enterprise-infrastructure
tags
license
Proprietary
repository
https://github.com/ZhenRobotics/openclaw-enterprise-hub
homepage
https://github.com/ZhenRobotics/openclaw-enterprise-hub

Enterprise Agent OS

The orchestration layer for enterprise software. Control cross-system workflows. Own the enterprise budget.

Overview

Enterprise Agent OS solves the unsolved problem of cross-system permission coordination at enterprise scale. When an employee has Salesforce access to "Customer A" but no SAP access to "Customer A" financial data, traditional solutions require a 3-day IT ticket. We provide real-time coordination in under 50ms.

Core Capabilities

1. Permission Topology Orchestration

The Problem Nobody Else Solves:

Employee Alice has Salesforce access to "Customer A" but no SAP access to "Customer A" financials.

  • Traditional: Manual IT ticket, 3-day delay
  • Our Solution: Real-time cross-system coordination, < 50ms

Features:

  • Query permissions across all systems simultaneously
  • Calculate minimum permission intersection
  • Auto-resolve conflicts
  • Complete audit trail for compliance

Impact: 70% reduction in IT tickets, zero manual escalations

2. Data Consistency Engine

Enterprise event sourcing - Single source of truth for all system changes.

Features:

  • All changes flow through central event log
  • Automatic conflict detection and resolution
  • Complete replay capability
  • 7-year audit retention

Impact: 99.9% data consistency, zero manual reconciliation

3. Fault Isolation & Graceful Degradation

The Problem: Hub fails, 20 systems lose control, operations paralyzed

Our Solution:

  • Systems operate independently during downtime
  • Auto-queue pending operations
  • Intelligent reconciliation on recovery

Impact: 99.9% uptime, zero revenue loss from failures

Installation

Prerequisites

  • Node.js >= 18.0.0
  • PostgreSQL >= 14
  • Redis >= 6

Quick Start

# Clone project
git clone https://github.com/ZhenRobotics/openclaw-enterprise-hub.git ~/enterprise-agent-os
cd ~/enterprise-agent-os

# Install dependencies
npm install

# Configure environment
cp .env.example .env
nano .env  # Add database, Redis, system credentials

# Setup database
npm run db:migrate

# Start services
npm run dev

# Verify
curl http://localhost:3000/health

Usage

Use Case 1: Check Cross-System Permissions

Agent Request:

"Check if alice@company.com has permission to view Customer CUST-001 data across Salesforce, SAP, and Jira"

Agent Executes:

curl -X POST http://localhost:3000/api/permissions/check \
  -H "Content-Type: application/json" \
  -d '{
    "userId": "alice@company.com",
    "resource": "customer",
    "resourceId": "CUST-001",
    "action": "read",
    "systems": ["salesforce", "sap", "jira"]
  }'

Response:

{
  "allowed": true,
  "permissionTopology": {
    "salesforce": { "allowed": true, "permissions": ["read", "write"] },
    "sap": { "allowed": true, "permissions": ["read"] },
    "jira": { "allowed": false, "reason": "Not in support group" }
  },
  "effectivePermissions": ["read"],
  "auditId": "audit-12345"
}

Use Case 2: Cross-System Workflow

Agent Request:

"Create a workflow to onboard new customers across Salesforce, SAP, and Jira automatically"

Agent Creates:

workflow:
  name: "Customer Onboarding"
  trigger:
    type: "event"
    event: "customer.created"
    source: "salesforce"

  steps:
    - id: "validate_permissions"
      type: "permission_check"
      systems: ["salesforce", "sap", "jira"]

    - id: "create_sap_account"
      type: "system_call"
      target:
        system: "sap"
        action: "create_customer_account"

    - id: "create_jira_project"
      type: "system_call"
      target:
        system: "jira"
        action: "create_project"

Use Case 3: Compliance Audit

Agent Request:

"Generate compliance report: who accessed Customer CUST-001 financial data in the last 90 days?"

Agent Executes:

curl http://localhost:3000/api/audit/export \
  --data-urlencode "resource=customer:CUST-001" \
  --data-urlencode "startDate=2025-12-07" \
  --data-urlencode "endDate=2026-03-07" \
  --data-urlencode "format=csv"

Output: CSV file with complete audit trail, ready for compliance review.

When to Use This Skill

Auto-Trigger Keywords

Permission Management:

  • "check permissions", "permission conflict", "cross-system access"
  • "grant access across", "permission audit", "compliance report"

Workflow Orchestration:

  • "automate workflow", "cross-system workflow", "integrate Salesforce and SAP"
  • "customer onboarding", "employee offboarding"

System Integration:

  • "connect enterprise systems", "data consistency", "single source of truth"
  • Mentions multiple enterprise systems (Salesforce + SAP + Workday)

Do NOT Use

  • Simple single-system tasks
  • Personal productivity (use Zapier)
  • Media processing (different domain)

API Reference

GraphQL

# Check permission
query {
  checkPermission(
    userId: "alice@company.com"
    resource: "customer"
    resourceId: "CUST-001"
    systems: ["salesforce", "sap"]
  ) {
    allowed
    permissionTopology { system allowed permissions }
    auditId
  }
}

# Create workflow
mutation {
  createWorkflow(input: {
    name: "Customer Onboarding"
    trigger: { type: EVENT, config: {...} }
    steps: [...]
  }) {
    id status deployedAt
  }
}

REST

POST /api/v1/permissions/check
GET  /api/v1/permissions/user/:userId
POST /api/v1/workflows
GET  /api/v1/workflows/:id
GET  /api/v1/audit/trail
GET  /health

Configuration

Environment Variables

# Core
DATABASE_URL=postgresql://user:pass@localhost:5432/enterprise_agent_os
REDIS_URL=redis://localhost:6379
OPA_ENDPOINT=http://localhost:8181

# Connected Systems
SALESFORCE_CLIENT_ID=your_id
SALESFORCE_CLIENT_SECRET=your_secret
SALESFORCE_INSTANCE_URL=https://your-instance.salesforce.com

SAP_API_ENDPOINT=https://your-sap.com/api
SAP_API_KEY=your_key

JIRA_INSTANCE_URL=https://your-company.atlassian.net
JIRA_EMAIL=admin@company.com
JIRA_API_TOKEN=your_token

Performance Metrics

MetricTarget
Permission check latency< 50ms (p95)
Workflow execution start< 100ms
Event processing1,000 events/sec
API response time< 200ms (p95)
System availability99.9%

Pricing

TierPricingTarget
Starter$50/user/month50-500 employees
Professional$100/user/month500-2K employees
Enterprise$150-200/user/month2K+ employees
Transaction-based$0.10-1.00/transactionHigh-volume

ROI: 12-18 months typical payback period

Security & Compliance

  • SOC 2 Type II (target Q3 2026)
  • GDPR compliant
  • HIPAA compliant
  • End-to-end encryption (TLS 1.3)
  • 7-year audit trail retention
  • Penetration tested quarterly

Architecture

Agent OS Hub (Orchestration)
  - Permission Topology
  - Workflow Engine
  - Agent Brain
         ↓
Event Store (Single Source of Truth)
  - PostgreSQL + Event Sourcing + CQRS
         ↓
Integration Adapters (20+ Systems)
  - Salesforce | SAP | Workday | Jira

Development Status

Current Phase: MVP Development (Week 3/8)

Completed:

  • Architecture design
  • Permission topology engine design
  • Event sourcing architecture
  • Documentation

In Progress:

  • Permission discovery service
  • OPA integration
  • Admin dashboard
  • GraphQL API

Next Milestones:

  • Week 4-6: Complete permission engine
  • Week 7-8: Pilot customer deployment

Agent Behavior Guidelines

DO:

  • Verify permissions before cross-system operations
  • Log all checks for audit trail
  • Handle conflicts gracefully
  • Suggest workflow automation
  • Provide compliance-ready reports

DON'T:

  • Bypass permission checks
  • Assume permissions are consistent
  • Execute workflows without validation
  • Ignore audit requirements

Support

  • Documentation: https://github.com/ZhenRobotics/openclaw-enterprise-hub/tree/main/docs
  • GitHub: https://github.com/ZhenRobotics/openclaw-enterprise-hub
  • Email: support@zhenrobotics.com
  • Enterprise Sales: sales@zhenrobotics.com

Troubleshooting

Permission Check Timeout

# Check Redis
redis-cli ping

# Verify OPA
curl http://localhost:8181/health

# Restart service
docker-compose restart permission-service

Workflow Failed

# Check adapters
curl http://localhost:3000/api/adapters/status

# Test connection
curl http://localhost:3000/api/test/salesforce

Version History

v1.0.0-alpha (2026-03-07) - Current

Status: MVP Development

Features:

  • Permission topology orchestration (design complete)
  • Event sourcing architecture (design complete)
  • GraphQL API specification (design complete)

Known Limitations:

  • MVP supports 3 systems initially
  • Single-region deployment only
  • No multi-tenancy yet

License

Proprietary Software - Contact for licensing terms

Final Note

Enterprise Agent OS is not another integration tool.

It's the orchestration layer that will capture 90% of enterprise software value over the next decade.

Position yourself accordingly.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

80.78%
按下载量换算2,267

安全审计

VirusTotal

通过

ClawScan

可疑

Static analysis

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

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

来源信息

继续浏览同类 Skills