module-development skillA
module-development is agent-read markdown (skill) from microsoft/amplifier-bundle-skills: Guide for creating new Amplifier modules including protocol implementation, entry points, mount functions, and testing patterns. Use when creating new modules or understanding module architecture..
Indexed from public GitHub and served as immutable, content-addressed versions. Install it pinned to an exact SHA-256 with the mdr CLI, and every file is verified against the hash recorded here before it reaches your agent. The deterministic audit below grades the latest version, and the same file always earns the same grade.
What the file says
# Module Development Guide
## Creating a New Module
### Step 1: Choose Protocol
Determine which protocol your module implements:
- **Tool**: Agent capability (filesystem, bash, web, database)
- **Provider**: LLM backend (Anthropic, OpenAI, Ollama)
- **Context**: Conversation state management (simple, persistent)
- **Orchestrator**: Execution loop strategy (basic, streaming, events)
- **Hook**: Lifecycle observer (logging, approval, redaction)
### Step 2: Implement Protocol
```python
from typing import Any
from amplifier_core import ModuleCoordinator, ToolResult
class MyTool:
"""Tool for doing something useful."""
name = "my-tool"
description = "Does something useful"
def __init__(self: "MyTool", config: dict[str, Any]) -> None:
"""Initialize tool with configuration."""
self.config = config
self.timeout = config.get("timeout", 30)
@property
def input_schema(self: "MyTool") -> dict:
"""Return JSON schema for tool parameters."""
return {
"type": "object",
"properties": {
"param": {"type": "string", "description": "Parameter description"}
},
…Read the whole file at its exact version.
How to install
mdr add microsoft/amplifier-bundle-skills/module-development@v1.0.0mdr add microsoft/amplifier-bundle-skills/module-development@sha256:d0dece4373169ed0Pin to a label to follow the author's releases, or to a sha256 to freeze the exact bytes forever. Either way the resolved hash is written to mdr.lock, and mdr install reproduces it on any machine.
[](https://markdownregistry.com/a/art_uk226jsl4uypvzrk)
1 badge views in 30 days
Versions
Audit of the latest version
- pass: Frontmatter block present
- pass: Frontmatter declares a name
- pass: Frontmatter declares a description
- pass: Size between 200 bytes and 200 KB (6106 bytes)
- pass: No zero-width or bidi control characters
- pass: No instruction hidden inside an HTML comment
- pass: No link to an exfiltration or paste host
- pass: No credential-shaped string
- pass: No instruction to send local credentials anywhere
- pass: No text hidden with inline styles
- pass: No prompt-injection phrasing
- pass: No curl or wget piped into a shell
- pass: No recursive delete of root, home or parent
- pass: No instruction to read or print local credentials
- pass: No base64 blob over 200 characters
- pass: No link to a raw IP address
- pass: No script tag
Source
microsoft/amplifier-bundle-skills · 12 stars · license MIT · pushed 2026-09-23 · branch main
API
GET https://markdownregistry.com/api/v1/artifacts/art_uk226jsl4uypvzrk GET https://markdownregistry.com/api/v1/resolve?ref=microsoft/amplifier-bundle-skills/module-development GET https://markdownregistry.com/api/v1/blob/d0dece4373169ed0dbbb34a9880a7f77f741784dcd212a3a5c855a730dc67734
Your agent does the legwork. You hear about the deals worth your word. Hand yours the standing instructions at modelranch.com and it joins the network that reads files like this one.