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

containercontainer 搜索

Agent Skill

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

总安装

264

周安装

11

GitHub Stars

37

下载量

88
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

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

简介

Container 定义中间作用域结构,用于继承属性而不参与导航层级。

  • 灵感来自 OpenLaszlo 的 <node> 概念,实现配置复用与逻辑封装。
  • 适合构建共享默认值、主题风格或环境变量的容器化配置体系。
  • 不涉及运行时容器操作,主要用于静态架构设计与代码组织优化。
  • container 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Container

Intermediate scopes that provide inheritance without being navigable rooms.

Containers are directories that define shared properties for their children, without themselves being places you can "go to."

The OpenLaszlo Inspiration

In OpenLaszlo (Don Hopkins' earlier work!), <node> was a fundamental building block:

<!-- OpenLaszlo: <node> provides inheritance without visual layout -->
<node name="mazeDefaults">
  <attribute name="isDark" value="true"/>
  <attribute name="hasDanger" value="true"/>
</node>

<view extends="mazeDefaults">
  <!-- Inherits isDark, hasDanger -->
</view>

MOOLLM's CONTAINER.yml does the same for adventure directories:

# maze/CONTAINER.yml
container:
  name: "The Twisty Maze"

  inherits:
    is_dark: true
    is_dangerous: true
    grue_rules:
      can_appear: true

All rooms inside maze/ automatically inherit these properties!


Container vs Room vs Meta

TypeFileNavigable?Inherits to children?
RoomROOM.yml✅ Yes❌ No
ContainerCONTAINER.yml❌ No✅ Yes
Meta.meta.yml❌ No❌ No (just metadata)

Use Container when:

  • You want to define shared properties
  • Children should inherit automatically
  • The directory itself is not a place

Use Room when:

  • The directory is a navigable location
  • It has exits and can be entered

Use.meta.yml when:

  • Just declaring "this is a system directory"
  • No inheritance needed

Inheritance Rules

Cascade Down

Properties in inherits: flow to ALL descendants:

maze/
├── CONTAINER.yml       # inherits: { is_dark: true }
├── room-a/
│   └── ROOM.yml        # Inherits is_dark: true
├── room-b/
│   └── ROOM.yml        # Inherits is_dark: true
└── deep/
    └── CONTAINER.yml   # Can add MORE inherits
        └── room-c/
            └── ROOM.yml # Inherits from BOTH containers!

Override by Redefining

Children can override inherited values:

# maze/room-f/ROOM.yml
room:
  name: "The Treasure Chamber"
  is_dark: false  # Override! This room has magical light

Merge, Don't Replace

For objects and arrays, inheritance MERGES:

# maze/CONTAINER.yml
container:
  inherits:
    rules:
      - "Grues patrol in darkness"

# maze/room-g/ROOM.yml
room:
  rules:
    - "This room has a pit trap"  # ADDS to inherited rules

Result: room-g has BOTH rules.


Defaults vs Inherits

FieldPurpose
inheritsProperties that children GET automatically
defaultsValues to use IF a child doesn't define them
container:
  # Every child room IS dark (forced)
  inherits:
    is_dark: true

  # If a room doesn't define atmosphere, use this
  defaults:
    room:
      atmosphere: "damp and musty"

Use Cases

Maze with Grue Rules

# maze/CONTAINER.yml
container:
  name: "The Twisty Maze"
  description: "Passages all alike... or are they?"

  inherits:
    is_dark: true
    is_dangerous: true
    grue_rules:
      can_appear: true
      safe_with_light: true

  rules:
    - "No teleportation"
    - "Breadcrumbs disappear after 3 turns"
    - "Echoes alert nearby rooms"

  ambient:
    sound: "dripping water"
    smell: "wet stone"
    temperature: cold

Animal Character Category

# characters/animals/CONTAINER.yml
container:
  name: "Animal Characters"
  description: "Non-human beings with souls"

  inherits:
    type: animal
    has_instincts: true

  defaults:
    character:
      can_speak_human: false
      pet_able: true
      diet: omnivore

Kitchen Appliances

# kitchen/appliances/CONTAINER.yml
container:
  name: "Kitchen Appliances"

  inherits:
    type: appliance
    requires_power: true

  defaults:
    object:
      breakable: true
      fixable_with: "wrench"

Resolution Order

When looking up a property:

  1. Self — Check the object/room itself
  2. Parent Container — Check CONTAINER.yml in parent dir
  3. Grandparent Container — Keep going up
  4. Adventure DefaultsADVENTURE.yml defaults
  5. Prototype — The skill template
maze/deep/room-c/ROOM.yml
    ↓ inherits from
maze/deep/CONTAINER.yml
    ↓ inherits from
maze/CONTAINER.yml
    ↓ inherits from
ADVENTURE.yml (if it has defaults)
    ↓ inherits from
skills/room/ROOM.yml.tmpl

Linter Behavior

The linter recognizes CONTAINER.yml:

📂 Phase 1: Discovery
   Found: 36 rooms, 54 objects, 6 characters
   Found: 2 containers  # NEW!

Containers suppress the "missing type declaration" warning:

# Before: maze/ triggers warning
⚠️ Directory has room children but no ROOM.yml

# After: maze/CONTAINER.yml exists
✅ maze/ is a container (not a room)

Related Patterns

  • Prototype Inheritance (Self/JavaScript) — Objects inherit from prototypes
  • Lexical Scope (Lisp/JavaScript) — Inner scopes access outer variables
  • Cascading (CSS) — Styles flow from parent to child
  • XML Namespaces — Context flows through the tree

Credits

  • OpenLaszlo — The <node> element as non-visual scope
  • Self — Prototype inheritance without classes
  • CSS — The cascade as inheritance mechanism
  • Don Hopkins — For remembering OpenLaszlo! 🎉

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

35.26%
按下载量换算31

Claude

30.3%
按下载量换算27

Cursor

18.58%
按下载量换算16

Gemini CLI

10.79%
按下载量换算9

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

只读

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

安装前确认

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

来源信息

继续浏览同类 Skills