Token导航 LogoToken导航TokenDH.com
研究检索只读github未标认证来源可访问许可证需确认审计通过

leela-ai艾莉拉

Agent Skill

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

总安装

269

周安装

11

GitHub Stars

37

下载量

86
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:leela-ai(艾莉拉)
来源仓库:https://github.com/simhacker/moollm
仓库路径:skills/leela-ai
安装命令:
npx skills add https://github.com/simhacker/moollm --skill leela-ai
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/simhacker/moollm --skill leela-ai

简介

leela-ai 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。

  • 它能帮助 Agent 组织信息源、过滤无关内容,并输出结构化候选列表供进一步评估。
  • 使用时需明确搜索目标和来源范围,避免依赖单一渠道或忽略时效性限制。
  • 安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写操作。
  • leela-ai 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Leela AI Skill

*Manufacturing Intelligence -- from theory to industrial application.*

Overview

This skill describes Leela AI's relationship to MOOLLM. Leela develops MOOLLM with an eye toward manufacturing intelligence, using it daily for practical devops, edgebox management, coding, debugging, and design work. The team is exploring how the theoretical foundations of Minsky, Papert, and Drescher might eventually deploy on factory floors.

Leela and Gary Drescher

Leela's foundations lie in Gary Drescher's work at MIT under Marvin Minsky and Seymour Papert. Drescher brought Jean Piaget's developmental psychology into computing: infants learn through sensorimotor experience and build *schemas* (context → action → result). Henry Minsky was exposed to this as a student; years later he reimplemented Drescher's algorithms and, with Cyrus Shaoul and Milan Minsky, founded Leela AI. The name *Leela* is Sanskrit for divine play — the play of creation, destruction, and re-creation.

Key points:

  • Schema mechanism: Leela builds models of the world using schemas that reason about which actions are possible and what changes when an action is performed. Goals are achieved by chaining schemas (planner finds actions whose results match the goal).
  • Self-supervised learning: Leela learns from exploratory actions without labeled examples or explicit reward; it forms and tests hypotheses. In multi-goal grid-world experiments (Kommrusch et al., IWSSL 2020), Leela reached training targets in ~160N² steps vs DQN ~360N^2.7, and does not suffer catastrophic forgetting.
  • Neurosymbolic extension: Later work (Symbolic Guidance for Constructivist Learning, Neurosymbolic Learning on Video Data, Society of LLMs) combines the symbolic schema system with neural perception (object/pose detection, cortical columns, multi-LLM instances). *Society of LLMs* (Kommrusch & Minsky, IWSSL 2024) maps Drescher's schema mechanism onto multi-agent LLMs: curiosity-driven goals, multiple plans, training samples when plans differ and one succeeds, contextual sub-activation (one agent "thinking subconsciously"), and incremental LoRA updates; evaluation target ARC-AGI. Leela Core uses the hybrid for manufacturing video intelligence — causal reasoning and explainability on top of ConvNets.

See: schema-mechanism/, reference/drescher-lineage.yml, reference/publications.yml, reference/society-of-llms.yml.

Core Technology

Neural-Symbolic Vision

Traditional computer vision is pattern matching. Leela's neural-symbolic system is *causal reasoning*.

neural_symbolic:
  layer_1: neural
    - object detection (what is there?)
    - pose estimation (how is it positioned?)
    - motion tracking (where is it going?)

  layer_2: symbolic
    - context inference (what situation is this?)
    - causal reasoning (why is this happening?)
    - SQL queries over temporal event database
    - prediction (what will happen next?)
    - explanation (human-readable "why")

  layer_3: pda  # LLM interface layer
    - generate: natural language → SQL
    - perform: execute queries
    - interpret: results → meaning
    - explain: causation in plain language
    - visualize: charts, timelines, maps
    - remember: query history, preferences

The neural layer provides perception. The symbolic layer provides reasoning. The PDA layer provides natural language interface -- neural at the surface, symbolic in the protocol.

Schema Mechanism (Drescher)

Every inference follows Drescher's schema pattern:

schema:
  context: [observable conditions]
  action: [event that occurred]
  result: [observed outcome]

  learning:
    marginal_attribution:
      - which context features predict result?
    synthetic_items:
      - inferred entities not directly observed
    generalization:
      - when does this schema apply elsewhere?

Edge Computing Architecture

Intelligence at the edge, not in the cloud:

edge_architecture:
  edgebox:
    location: factory floor
    latency: <50ms
    capabilities: [inference, alerting, logging]

  cloud:
    purpose: training, aggregation, analytics
    latency: acceptable for non-real-time

  principle: |
    Real-time decisions happen at the edge.
    Learning and optimization happen in the cloud.
    Data sovereignty stays with the customer.

Applications

1. Safety Monitoring

safety_monitoring:
  purpose: Prevent accidents through predictive awareness

  examples:
    - pedestrian_in_vehicle_zone
    - ppe_compliance (hard hats, vests, glasses)
    - ergonomic_risk (repetitive motion, lifting posture)
    - near_miss_detection (close calls before accidents)

  output:
    alert: real-time notification
    explanation: why this is a safety concern
    recommendation: suggested action
    audit: logged for compliance

2. Process Optimization

process_optimization:
  purpose: Improve efficiency through observation and inference

  examples:
    - cycle_time_analysis
    - bottleneck_detection
    - idle_time_measurement
    - workflow_optimization

  output:
    insight: what is happening
    causation: why it is happening
    recommendation: how to improve
    simulation: what-if scenarios

3. Predictive Maintenance

predictive_maintenance:
  purpose: Fix equipment before it fails

  signals:
    visual: vibration patterns, wear indicators, alignment
    thermal: heat signatures indicating friction or failure
    acoustic: sound patterns indicating mechanical issues

  schema:
    context: [equipment state, operational history]
    action: [detected anomaly]
    result: [predicted failure mode]

  output:
    prediction: what will fail, when
    explanation: why we predict this
    recommendation: maintenance action
    confidence: certainty level

4. DevOps Automation

devops:
  purpose: Apply MOOLLM patterns to infrastructure

  patterns:
    files_as_state:
      - infrastructure as code
      - git as audit trail
      - YAML as configuration

    coherence_engine:
      - detect configuration drift
      - propose remediation
      - explain changes

    speed_of_light:
      - batch operations
      - parallel deployment
      - minimal round-trips

MOOLLM Integration

Rooms as Zones

# Factory zone as MOOLLM room
zone:
  id: assembly_line_3
  type: [production, monitored, indoor]

  contains:
    - equipment: [robot_arm_1, conveyor_2, station_7]
    - personnel: [operator_badge_1234]
    - cameras: [cam_3a, cam_3b, cam_3c]

  exits:
    - to: staging_area
    - to: quality_check

  atmosphere:
    safety_status: green
    production_status: active
    alert_level: none

Characters as Entities

# Forklift as MOOLLM character
entity:
  id: forklift_07
  type: [vehicle, autonomous, tracked]

  location: loading_dock_2
  state: stationary

  current_task: awaiting_clearance

  relationships:
    operator: badge_5678
    cargo: pallet_1234

  needs:
    fuel: 0.73
    maintenance: 0.15  # due soon

Skills as Inference Rules

# Safety protocol as MOOLLM skill
skill:
  id: pedestrian-safety

  activation:
    context: pedestrian detected in vehicle zone

  action:
    - alert vehicle operators
    - log safety event
    - track pedestrian until zone-clear

  advertisement:
    provides: pedestrian-zone-monitoring
    satisfies: [safety, compliance, awareness]

The Team

Team MemberRoleBackground
Henry MinskyCTOMIT AI Lab, NTT DoCoMo, Google Nest. Marvin Minsky's son.
Dr. Cyrus ShaoulChief EvangelistComputational neuroscientist, Digital Garage co-founder/CTO
Dr. Milan Singh MinskyVP ProductVenture-backed startups, RayVio co-founder
Sheung LiVP ApplicationsMachine vision in manufacturing
Dr. Steve KommruschSenior AI Research ScientistDeep learning, AMD/HP/National Semiconductor
Don HopkinsAI ArchitectThe Sims, NeWS, pie menus, MOOLLM

The theory meets the practice. Minsky's ideas, refined through Hopkins's implementation experience and Kommrusch's deep learning expertise, deployed on factory floors.

Ethical Framework

Transparency

transparency:
  principle: Every inference is explainable

  implementation:
    - causal_chains: visible in audit log
    - confidence_levels: always reported
    - uncertainty: acknowledged, not hidden
    - limitations: documented

Privacy

privacy:
  principle: Data sovereignty and minimal collection

  implementation:
    - edge_processing: data stays local when possible
    - anonymization: faces pixelated by default
    - retention: minimal, configurable
    - consent: clear signage, worker awareness

Human Agency

human_agency:
  principle: AI advises, humans decide

  implementation:
    - critical_decisions: require human approval
    - recommendations: clearly labeled as suggestions
    - override: always possible
    - accountability: human remains responsible

Integration Points

SystemIntegration
SCADASensor data ingestion
MESProduction event correlation
ERPBusiness context enrichment
CMMSMaintenance recommendation routing
Safety SystemsAlert escalation

Deployment Model

deployment:
  edge:
    edgeboxes: industrial compute at the source
    latency: <50ms for real-time inference
    resilience: operates offline if cloud disconnected

  cloud:
    platform: customer choice (AWS, GCP, Azure, on-prem)
    purpose: training, aggregation, dashboard
    sovereignty: customer owns their data

  hybrid:
    edge_to_cloud: telemetry, events, learning data
    cloud_to_edge: model updates, configuration

References

  • Drescher, G. (1991). *Made-Up Minds.* MIT Press.
  • Minsky, M. (1985). *Society of Mind.* Simon & Schuster.
  • Kommrusch et al. (2020). Self-Supervised Learning for Multi-Goal Grid World: Comparing Leela and Deep Q Network. IWSSL, PMLR 131.
  • MOOLLM Skills
  • Schema Mechanism
  • reference/publications.yml — papers and case study
  • leela.ai

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

38.64%
按下载量换算33

Claude

30.31%
按下载量换算26

Cursor

18.35%
按下载量换算16

Gemini CLI

10.35%
按下载量换算9

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

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

来源信息

继续浏览同类 Skills