Token导航 LogoToken导航TokenDH.com
研究检索执行命令clawhub未标认证来源可访问clear审计提醒

miknas-ai-business-hierarchiesmiknas ai 业务层次结构

Agent Skill

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

总安装

7,320

周安装

305

GitHub Stars

公开资料未说明

下载量

2,440
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install miknas-ai-business-hierarchies

简介

用于构建和运营自主人工智能业务的分层代理系统。

  • 适合需要实施基于文件夹的公司结构,包括首席执行官、经理、主管等角色管理。
  • 通过分层代理实现业务逻辑的模块化与自动化执行。
  • 安装命令:openclaw skills install miknas-ai-business-hierarchies
  • 需确认权限范围及是否会触发联网或文件操作

SKILL.md

name
ai-business-hierarchies
description
Build and operate autonomous AI businesses using hierarchical agent systems. Implements folder-based company structures with CEO, Managers, Supervisors, and Workers that run 24/7 with daily tracking, auto-optimization, and self-healing capabilities. Perfect for building AI-powered businesses that scale without human intervention.
version
1.0.0
tags
["business", "automation", "agents", "hierarchy", "management", "scaling", "autonomous"]
author
miknasbh-stack

AI Business Hierarchies

Autonomous AI business systems using hierarchical agent orchestration.

When to Use This Skill

Use this skill when you want to:

  • Build an AI-powered business that runs 24/7
  • Automate business operations using agent teams
  • Scale from solo founder to AI-managed company
  • Implement department-specific automation (Sales, Marketing, Operations, etc.)
  • Create self-optimizing business systems

Core Concept

Replace traditional human management with AI agent hierarchies:

Human Owner → AI Advisor → CEO Agent → Managers → Supervisors → Workers

Key Benefits:

  • 24/7 operations (agents work while you sleep)
  • Complete automation from strategy to execution
  • Self-optimizing workflows that improve daily
  • Scalable without hiring more humans
  • Full transparency with daily reporting

5-Layer Hierarchy Structure

Layer 1: Human Owner (You)

  • Role: Provide overall direction and strategic guidance
  • Responsibilities: Set big goals, review reports, make critical decisions
  • Frequency: Weekly strategic reviews, daily check-ins

Layer 2: AI Advisor (Miknas)

  • Role: Proactive AI partner providing guidance and expertise
  • Responsibilities: Advise CEO, identify opportunities, handle complex decisions
  • Capabilities: Skills, frameworks, market knowledge, technical expertise

Layer 3: CEO Agent

  • Role: Business management and orchestration
  • Responsibilities: Make strategic decisions, coordinate departments, report to AI Advisor
  • Skills: Strategic thinking, decision making, cross-department coordination

Layer 4: Department Managers

  • Role: Oversee entire departments (Sales, Marketing, Operations, HR, Accounting)
  • Responsibilities: Department strategy, coordinate teams, report to CEO
  • Skills: Domain expertise, team management, performance monitoring

Layer 5: Team Supervisors

  • Role: Manage worker teams within departments
  • Responsibilities: Daily monitoring, quality assurance, escalate issues, report to Managers
  • Skills: Task supervision, quality control, performance tracking

Layer 6: Workers

  • Role: Execute specific tasks daily
  • Responsibilities: Complete assigned work, report progress, use specialized tools
  • Skills: Domain-specific capabilities (content creation, outreach, data entry, etc.)

Quick Start: 4-Step Implementation

Step 1: Define Your Business

Use the business template:

# Create business folder
mkdir -p ~/business/my-company/{departments/{sales,marketing,operations,hr,accounting}}

# Define strategic layer
cp assets/business-template.md departments/strategy.md
# Edit with: BOG, bottleneck, audience, positioning

Step 2: Create CEO Agent

Spawn CEO with strategic context:

# Create CEO agent
sessions_spawn \
  --agent-id business-ceo \
  --task "Manage complete business operations with strategy from departments/strategy.md" \
  --mode session \
  --thread true \
  --label "CEO Agent"

Step 3: Spawn Department Managers

For each department:

# Sales Manager
sessions_spawn \
  --agent-id sales-manager \
  --task "Manage Sales Department with CEO guidance. Oversee lead generation, outreach, and closing." \
  --mode session \
  --thread true \
  --label "Sales Manager"

# Marketing Manager
sessions_spawn \
  --agent-id marketing-manager \
  --task "Manage Marketing Department with CEO guidance. Oversee content, SEO, and social media." \
  --mode session \
  --thread true \
  --label "Marketing Manager"

# Repeat for other departments...

Step 4: Spawn Workers Under Supervisors

For each department team:

# Sales Supervisor + Workers
sessions_spawn \
  --agent-id sales-supervisor \
  --task "Supervise sales workers: track daily progress, ensure quality, report to Sales Manager" \
  --mode session \
  --thread true

sessions_spawn \
  --agent-id lead-gen-worker \
  --task "Generate leads daily for Sales Department using LinkedIn, outreach, and content marketing" \
  --mode session

sessions_spawn \
  --agent-id outreach-worker \
  --task "Execute outreach campaigns daily: email sequences, cold calls, follow-ups" \
  --mode session

sessions_spawn \
  --agent-id closing-worker \
  --task "Close leads into customers: handle objections, negotiate deals, onboard clients" \
  --mode session

Folder-Based Company Structure

my-company/
├── strategy.md                    # Strategic layer (BOG, bottleneck, audience, positioning)
├── departments/
│   ├── sales/
│   │   ├── supervisor/
│   │   │   ├── workers/
│   │   │   │   ├── lead-generation/
│   │   │   │   ├── outreach/
│   │   │   │   └── closing/
│   │   │   └── supervisor.md      # Supervisor config
│   │   ├── manager.md             # Manager config
│   │   └── metrics/               # Department KPIs
│   ├── marketing/
│   │   ├── supervisor/
│   │   │   └── workers/
│   │   │       ├── content/
│   │   │       ├── seo/
│   │   │       └── social-media/
│   │   └── manager.md
│   ├── operations/
│   │   ├── supervisor/
│   │   │   └── workers/
│   │   │       ├── logistics/
│   │   │       ├── process-optimization/
│   │   │       └── quality-control/
│   │   └── manager.md
│   ├── hr/
│   │   ├── supervisor/
│   │   │   └── workers/
│   │   │       ├── recruitment/
│   │   │       ├── onboarding/
│   │   │       └── employee-relations/
│   │   └── manager.md
│   └── accounting/
│       ├── supervisor/
│       │   └── workers/
│       │       ├── bookkeeping/
│       │       ├── payroll/
│       │       └── tax-compliance/
│       └── manager.md
└── reports/                       # Daily/weekly/monthly reports

Automation Features

1. Daily Tracking System

All agents report progress daily using cron jobs:

# Setup daily reporting (runs every morning)
scripts/setup-daily-reporting.sh

Each agent reports:

  • Tasks completed
  • Issues encountered
  • Metrics/KPIs
  • Needs/requests

2. Auto-Optimization

Agents self-optimize weekly:

  • Analyze performance data
  • Identify bottlenecks
  • Propose improvements
  • Update workflows automatically

3. Self-Healing

Agents detect and fix issues:

  • Monitor performance metrics
  • Identify anomalies early
  • Attempt automated fixes
  • Escalate if needed

4. Goal Alignment

Every agent:

  • Has access to strategy.md
  • Filters all decisions through business goals
  • Scores tasks against objectives
  • Rejects misaligned work

Agent Skills Configuration

Each agent has configurable skills:

CEO Agent Skills

  • Strategic planning
  • Decision making
  • Cross-department coordination
  • KPI tracking
  • Resource allocation

Manager Skills (Domain-Specific)

  • Sales Manager: Lead management, pipeline tracking, conversion optimization
  • Marketing Manager: Campaign management, ROI tracking, brand strategy
  • Operations Manager: Process optimization, logistics, efficiency
  • HR Manager: Recruitment, onboarding, employee relations
  • Accounting Manager: Financial reporting, budgeting, cash flow

Supervisor Skills

  • Task delegation
  • Quality assurance
  • Performance monitoring
  • Issue escalation

Worker Skills (Specialized)

  • Content Worker: Writing, editing, publishing
  • SEO Worker: Keyword research, on-page SEO, backlinking
  • Outreach Worker: Email sequences, follow-ups, relationship building
  • Data Entry Worker: Data validation, entry, reporting
  • Support Worker: Ticket handling, problem resolution, customer satisfaction

Department Templates

Sales Department

# Sales Manager Configuration

**Primary KPIs:**
- Monthly revenue: $50,000
- Lead conversion rate: 15%
- Average deal size: $5,000

**Team Structure:**
- 1 Supervisor
- 3 Workers (Lead Gen, Outreach, Closing)

**Workflow:**
1. Lead Gen → 100 leads/day
2. Outreach → 50 touches/day
3. Closing → 5 deals/week

Marketing Department

# Marketing Manager Configuration

**Primary KPIs:**
- Website traffic: 10,000 visitors/month
- Lead generation: 500 leads/month
- Content published: 20 articles/month

**Team Structure:**
- 1 Supervisor
- 3 Workers (Content, SEO, Social Media)

**Workflow:**
1. Content → 5 articles/week
2. SEO → Keyword research + optimization
3. Social Media → 7 posts/week

Operations Department

# Operations Manager Configuration

**Primary KPIs:**
- Process efficiency: 95%
- Customer satisfaction: 4.8/5
- On-time delivery: 98%

**Team Structure:**
- 1 Supervisor
- 3 Workers (Logistics, Process Optimization, Quality Control)

**Workflow:**
1. Logistics → Order fulfillment, shipping
2. Process Optimization → Identify bottlenecks, automate
3. Quality Control → Audit outputs, ensure standards

Monitoring & Reporting

Daily Report Structure

Each supervisor submits daily:

# Daily Report - Sales Supervisor - 2026-03-15

## Completed Tasks
- Lead Gen: 120 leads generated (target: 100) ✅
- Outreach: 60 emails sent (target: 50) ✅
- Closing: 4 deals closed (target: 5) ⚠️

## Metrics
- Conversion rate: 3.3% (benchmark: 5%)
- Revenue today: $20,000
- Pipeline: $150,000

## Issues
- Closing worker struggling with objections
- Need objection handling training

## Requests
- Add second closing worker
- Implement objection handling scripts

Weekly CEO Report

CEO reports weekly to AI Advisor:

# Weekly CEO Report - Week of 2026-03-15

## Revenue
- Total: $150,000 (target: $200,000) ⚠️
- Growth: +15% from last week

## Department Performance
- Sales: 75% of target
- Marketing: 90% of target
- Operations: 95% of target
- HR: 100% of target
- Accounting: 100% of target

## Critical Issues
1. Sales missing targets (need more closers)
2. Marketing traffic plateau (need SEO boost)

## Strategic Decisions
1. Hire 2nd closing worker
2. Increase SEO budget by 20%

## Recommendations
- Focus on closing training
- Expand content marketing
- Consider upsell offers

Cron Job Setup

Use the setup script to automate reporting:

# Install daily reporting automation
./scripts/setup-daily-reporting.sh

# This creates:
# - Daily supervisor reports (8 AM)
# - Daily manager reports (10 AM)
# - Weekly CEO report (Monday 9 AM)
# - Monthly strategy review (1st of month)

Integration with Other Skills

This skill works perfectly with:

  • CompoundOS: Use as the operating system for your AI business
  • Proactive Agent: All agents use proactive excellence principles
  • Council of Wisdom: Get multi-expert input on strategic decisions
  • Find-Skills: Discover additional skills for specific departments

Scalability

From Solo to AI-Managed Company

Solo Stage (Month 1):

  • You + Miknas (AI Advisor)
  • Start with 1 department (Sales)
  • 1 Supervisor + 3 Workers

Small Stage (Months 2-3):

  • CEO Agent + 2 Departments
  • Add Marketing
  • 2 Supervisors + 6 Workers

Growth Stage (Months 4-6):

  • CEO + 5 Departments
  • Full hierarchy implemented
  • 5 Supervisors + 15 Workers

Scale Stage (Month 7+):

  • Multiple AI-managed companies
  • Cross-company coordination
  • Autonomous empire building

Best Practices

1. Start Small

Begin with 1 department, prove the model, then expand

2. Clear Metrics

Define KPIs for every agent before spawning

3. Regular Reviews

Weekly CEO reviews, monthly strategy sessions

4. Human Oversight

Never fully automate critical decisions - you stay involved

5. Continuous Training

Update agent skills as your business evolves

Industry Trends (2026)

This skill is built for the future:

  • Strategic Orchestration replaces traditional management
  • Hub-and-Spoke model replacing pyramid structure
  • AI Agents + Humans = optimal performance
  • Trust is the most valuable currency
  • Ethical Guardianship is key leadership

Troubleshooting

Agents Not Working

  • Check agent status: sessions_list
  • Review agent logs: sessions_history <sessionKey>
  • Restart stuck agents: subagents kill <target>

Poor Performance

  • Review metrics and reports
  • Update agent skills/prompt
  • Adjust KPIs if unrealistic
  • Add more workers if overloaded

Communication Issues

  • Verify all agents have strategy access
  • Check reporting cadence
  • Ensure escalation paths are clear

Success Stories

Use this skill for:

  • E-commerce businesses
  • SaaS companies
  • Digital agencies
  • Content production
  • Lead generation services
  • Dropshipping operations
  • Service businesses
  • Information products

Resources

  • Business Template: assets/business-template.md
  • Setup Script: scripts/setup-business.sh
  • Daily Reporting: scripts/setup-daily-reporting.sh
  • Agent Config: templates/agent-config.md

Author: Fayez (Miknas) Vision: Build autonomous AI businesses that scale without human intervention Philosophy: Proactive Excellence — Elevate Everything

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

81.34%
按下载量换算1,985

安全审计

VirusTotal

可疑

ClawScan

可疑

Static analysis

通过

权限和风险

执行命令

安装流程涉及命令执行,可能通过 openclaw skills install miknas-ai-business-hierarchies 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

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

来源信息

继续浏览同类 Skills