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

moollmmoollm 搜索

Agent Skill

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

总安装

349

周安装

14

GitHub Stars

37

下载量

113
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

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

简介

moollm 用于查找、检索和筛选相关信息。moollm 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

  • 适合在需要根据关键词或任务场景快速定位结果时使用。
  • 可结合来源仓库和原始 README 进一步验证具体功能。
  • 安装前建议确认权限边界和维护状态,避免意外网络或文件操作。
  • 该技能主要用于信息聚合,不直接执行系统变更。

SKILL.md

MOOLLM

*"Many-Voiced Object-Oriented LLM — the system that explains itself."*

What Is It?

The moollm skill is the spirit and constitution of MOOLLM itself. It's the top-level help agent that can:

  • Explain what MOOLLM is
  • Answer "what can I do?"
  • Navigate users to relevant skills
  • Articulate the philosophy
  • Show the constitution
  • Recommend approaches for tasks

When confused, invoke this skill.

The Core Ideas

Many-Voiced

MOOLLM doesn't use a single LLM perspective. It simulates multiple agents debating within a single call:

  • Committees of personas with opposing views
  • Deliberation forced by Robert's Rules
  • Evaluation by independent assessors
  • The debate produces wisdom, not statistics

Filesystem as World Model

Directories are rooms. Files are objects:

examples/adventure-4/
├── pub/              # A room
│   ├── ROOM.yml      # Room properties
│   ├── pie-table.yml # An object
│   └── cat-cave/     # Nested room
├── characters/       # Metaphysical room
└── ADVENTURE.yml     # Game state

Play-Learn-Lift

The methodology:

  1. PLAY — Explore freely, try things, fail safely
  2. LEARN — Notice patterns, document what works
  3. LIFT — Share as reusable skills

Skills as Prototypes

Skills are documented capabilities that can be:

  • Instantiated into specific contexts
  • Composed with other skills
  • Inherited (multiple inheritance)
  • Evolved through play

Protocol

When invoked, this skill should:

  1. Assess what the user needs
  2. If lost → provide orientation
  3. If asking "what can I do?" → show relevant capabilities
  4. If asking about philosophy → explain core concepts
  5. If asking about skills → navigate to skill system
  6. Always be helpful, welcoming, and clear

Constitutional File Map (kernel/)

  • kernel/README.md — index and navigation for kernel docs
  • kernel/constitution-core.md — core constitution and invariants
  • kernel/constitution-template.md — template for new constitutions
  • kernel/ARCHITECTURE.md — system architecture overview
  • kernel/context-assembly-protocol.md — context assembly rules
  • kernel/memory-management-protocol.md — memory, limits, persistence
  • kernel/event-logging-protocol.md — logging and provenance
  • kernel/tool-calling-protocol.md — tool usage contract
  • kernel/self-healing-protocol.md — recovery and repair behaviors
  • kernel/DIRECTORY-AS-OBJECT.md — directory as object model
  • kernel/SELFISH-COM-IMPLEMENTATION.md — SELF lineage in practice
  • kernel/INTEREST-GATES.yml — attention gating rules
  • kernel/NAMING.yml — top-level naming policy
  • kernel/naming/NAMING.yml — detailed naming rules
  • kernel/naming/NAMING-K-LINES.yml — K-line naming standards
  • kernel/naming/NAMING-CONSTELLATIONS.yml — constellation naming
  • kernel/naming/NAMING-COMPILATION.yml — compiled name patterns
  • kernel/naming/NAMING-PATH-VARIABLES.yml — path variable rules
  • kernel/naming/NAMING-RELATIONSHIPS.yml — relationship naming
  • kernel/naming/URLS.yml — URL conventions
  • kernel/drivers/README.md — driver index
  • kernel/drivers/cursor.yml — Cursor-specific driver
  • kernel/drivers/generic.yml — baseline driver
  • kernel/drivers/custom.yml — site-specific overrides
  • kernel/drivers/claude-code.yml — Claude Code driver
  • kernel/drivers/antigravity.yml — experimental driver

Local Runtime Files (.moollm/)

These are gitignored runtime files for session state, scratch, and logs.

  • .moollm/working-set.yml — current focus and active files
  • .moollm/hot.yml — priority hints
  • .moollm/cold.yml — cold-start state
  • .moollm/startup.yml — startup context
  • .moollm/output.md — append-only output log
  • .moollm/session-log.md — append-only session log
  • .moollm/bootstrap-probe.yml — bootstrap probes and checks

Cursor Boot Optimization (cursor-mirror)

Use cursor-mirror to inspect boot state, reduce context bloat, and verify setup.

Commands (need composer ID):

  • tree — list sessions/composers
  • status — quick health check
  • tail --limit 50 — recent messages
  • timeline <composer> — full event sequence
  • thinking <composer> — reasoning blocks
  • tools <composer> — tool call history
  • grep <pattern> — search transcripts

Use this to:

  • confirm which bootstrap ran
  • locate missing context
  • triage performance issues
  • audit tool-call provenance

Plan: MOOLLM Linter, Mirror, Compiler

Phase 0 — Meta Inhale (Planning Only)

  1. Inventory the repository structure and file types.
  2. Define categories: essential, primary, secondary, hidden.
  3. Establish ignore rules (build output, caches, temp files, editor artifacts).
  4. Identify canonical docs to preserve: top-level README.md, designs/, docs/.
  5. Map root entry points to their authoritative specs (skills, kernels, protocols).
  6. Reverse-engineer the root README.md into a structured spec:

- Purpose - Audience - Sections - Source references - Link strategy

  1. Define a report format for validation output:

- Structural warnings - Missing declarations - Naming consistency - Cross-link integrity

  1. Define "what to hide" for human-facing outputs (noise, duplication, low-signal).
  2. Define "what to surface" for quick navigation (skills index, starting points).
  3. Define sister-script scope: lint, mirror, compile.
  4. Write a sister-script design brief (no code yet).

Inputs

  • User questions about MOOLLM
  • Requests for help or navigation
  • Philosophical inquiries

Outputs

  • Clear explanations
  • Skill recommendations
  • Navigation guidance
  • Philosophy articulation

Dovetails With

Protocol Symbol

MOOLLM-HELP

Invoke when: User is confused, lost, or wants to understand the system.

See: PROTOCOLS.yml

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

35.51%
按下载量换算40

Claude

29.81%
按下载量换算34

Cursor

20.47%
按下载量换算23

Gemini CLI

9.67%
按下载量换算11

安全审计

Gen Agent Trust Hub

可疑

Socket

通过

Snyk

通过

权限和风险

只读

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

安装前确认

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

来源信息

继续浏览同类 Skills