Agent Plugins Marketplace
All plugins

ambient-library

v1.25.0

Canonical agent, skill, and capability library for Codex, exposed through one lazy-loading ambient router skill.

CodexClaude Code3 Skills

By Coach LouLicense: MIT0 GitHub starsUpdated last week

Directory evidence

Runtimes
Codex and Claude Code
Parsed components
3 skill or MCP entries
Source updated
Sep 14, 2026
Manifest status
Canonical path parsed

The directory validates manifest shape and source location. It does not execute the plugin or provide a security endorsement. Review the indexing methodology

Install ambient-library for Codex and Claude Code

Installs for the current user
codex plugin marketplace add IchenDEV/agent-plugin-mkt
codex plugin marketplace upgrade agent-plugin-marketplace
codex plugin add ambient-library@agent-plugin-marketplace

Paste and run these commands in a terminal with Codex. They add and refresh the PluginsMP catalog, then install this plugin.

The installer fetches third-party code from the source repository shown on this page. This directory validates manifest structure and source location, but does not perform a security audit; review the manifest, components, and source before installing.

Get the source manually
git clone https://github.com/coachlou/ambient-library

Clone the source repository, then follow its setup instructions to add the plugin to a compatible client. The repository root is the plugin root.

Plugin files

ambient-library/
├── .codex-plugin/plugin.json
├── .claude-plugin/plugin.json
├── skills/ambient/SKILL.md
├── skills/context-mgr/SKILL.md
└── skills/session/SKILL.md

Included Skills3

ambientskills/ambient/SKILL.md

Use for all ambient-library operations. Triggers on setting up ambient-library in a project ("set up ambient-library", "install skills", "initialize the skill system"), configuring project skills ("configure my skills", "which skills do I need"), updating or managing skills ("update skills", "refresh skills", "add/remove a skill"), code review ("review this code", "code review", "check for security issues"), making a folder ambiently intelligent ("make this folder ambient", "stamp .aai here", "set up an ambient/agentic folder for X", "interview me about this folder"), and any project-specific task a domain skill covers ("write a project brief", "summarize this project", "create a project overview").

context-mgrskills/context-mgr/SKILL.md

Install the multi-agent context manager (.context/ shared brain, routing table, CLI bootstraps, optional wrapper) into a project. Use this skill when the user says "install context-mgr", "add the context manager to this project", "set up multi-agent context here", "scaffold .context/", "add the shared brain to /path/to/project", "drop the context system here", or any request to set up the continuity protocol in a target folder. Default target is the current working directory; the user may specify a different path. Idempotent — safe to re-run; surfaces conflicts before overwriting.

sessionskills/session/SKILL.md

Pick up and hand off work seamlessly across multiple agents, models, and CLI windows working on the same project. Use at session start ("what should I work on", "what's the state of this project", "resume work", "pick up where we left off", "session check-in"), mid-session ("checkpoint", "save where I am", "quick save", "save progress"), and at session end ("wrap up", "log what I did", "session check-out", "before I stop"). Reads the project's `.context/` store to orient, claims a task by routing rules, then on exit updates the board, appends a structured handoff entry, and commits. Works for any project — code, content, skill-authoring — that has a `.context/` directory at the repo root. If `.context/` is missing, offers to bootstrap it.

Plugin manifests2

.codex-plugin/plugin.json
{
  "name": "ambient-library",
  "version": "1.25.0",
  "description": "Canonical agent, skill, and capability library for Codex, exposed through one lazy-loading ambient router skill.",
  "author": {
    "name": "Coach Lou",
    "url": "https://github.com/coachlou"
  },
  "homepage": "https://github.com/coachlou/ambient-library",
  "repository": "https://github.com/coachlou/ambient-library",
  "license": "MIT",
  "keywords": [
    "agents",
    "skills",
    "codex",
    "claude-code",
    "capability-library"
  ],
  "skills": "./codex-skills/",
  "interface": {
    "displayName": "Ambient Library",
    "shortDescription": "Canonical capability library for Codex agents",
    "longDescription": "Ambient Library exposes a centralized library of agents, skills, and reusable capabilities to Codex through one registered router skill. The Codex wrapper stays thin: it loads canonical instructions on demand, keeps domain skills out of context until selected, and preserves the same library used by other runtime adapters.",
    "developerName": "Coach Lou",
    "category": "Developer Tools",
    "capabilities": [
      "Interactive",
      "Read",
      "Write"
    ],
    "websiteURL": "https://github.com/coachlou/ambient-library",
    "defaultPrompt": [
      "Set up ambient-library in this project",
      "Configure my skills",
      "Review this code"
    ],
    "brandColor": "#2563EB",
    "screenshots": []
  }
}
.claude-plugin/plugin.json
{
  "name": "ambient",
  "description": "Ambient skill library — project setup, skill selection, management, and code review, all through natural language.",
  "version": "1.25.0",
  "author": {
    "name": "Coach Lou"
  },
  "homepage": "https://github.com/coachlou/ambient-library",
  "repository": "https://github.com/coachlou/ambient-library",
  "license": "MIT"
}

If you maintain this plugin, link to this source-backed listing from your README so users can review its manifest and indexed components.

[ambient-library on Agent Plugins Marketplace](https://pluginsmp.com/plugins/ambient-library)