Agent Plugins Marketplace
All plugins

implement

v0.3.0

Python tooling: uv, pydantic config, loguru logging, typed interfaces, path config

Claude CodeAgent Plugins5 Skills

By HernandoR0 GitHub starsUpdated 4 days ago

Directory evidence

Runtimes
Claude Code and Agent Plugins
Parsed components
5 skill or MCP entries
Source updated
Sep 20, 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 implement for Claude Code

Installs for the current user
claude plugin marketplace add IchenDEV/agent-plugin-mkt
claude plugin marketplace update agent-plugin-marketplace
claude plugin install implement@agent-plugin-marketplace

Paste and run these commands in a terminal with Claude Code. 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/HernandoR/agent-skillset

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

Plugin files

plugins/implement/
├── .claude-plugin/plugin.json
├── plugin.json
├── skills/centralized-path-config/SKILL.md
├── skills/loguru-first-logging/SKILL.md
├── skills/pydantic-config-tree/SKILL.md
├── skills/typed-interfaces/SKILL.md
└── skills/uv-python-workflow/SKILL.md

Included Skills5

centralized-path-configskills/centralized-path-config/SKILL.md

Use when adding or refactoring filesystem paths in a project that assembles paths from runtime variables and directory-name literals (pipelines, ETL, ML training, build output trees), or when reviewing code that imports `pathlib.Path` together with string segments.

loguru-first-loggingskills/loguru-first-logging/SKILL.md

Use when adding logging to a Python project, when business code uses `print()` or `import logging` directly, when third-party stdlib loggers (urllib3, requests, boto3, torch) bypass the file sink, or when log triage is hard because output is unstructured.

pydantic-config-treeskills/pydantic-config-tree/SKILL.md

Use when a project has hyperparameters or behavioural settings scattered across modules, environment variables, or ad-hoc config classes, and a single typed root model with domain-grouped sub-models, env-var binding, and YAML round-trip is wanted.

typed-interfacesskills/typed-interfaces/SKILL.md

Use when creating or changing public interfaces, exported APIs, cross-language boundaries, schemas, stubs, or type contracts in Python, TypeScript, Rust, or Go.

uv-python-workflowskills/uv-python-workflow/SKILL.md

Use when setting up, running, validating, or modifying Python projects, Python scripts, virtual environments, dependency files, or Python command workflows.

Plugin manifests2

plugins/implement/.claude-plugin/plugin.json
{
  "name": "implement",
  "version": "0.3.0",
  "description": "Python tooling: uv, pydantic config, loguru logging, typed interfaces, path config",
  "keywords": [
    "python",
    "uv",
    "pydantic",
    "loguru",
    "typing"
  ],
  "skills": "./skills",
  "interface": {
    "displayName": "Implement",
    "shortDescription": "Python project tooling: uv, typed config trees, loguru, path centralization",
    "longDescription": "Skills for writing the code. Drive Python projects through uv, collapse scattered settings into one typed pydantic config tree, route all diagnostics through loguru including third-party stdlib loggers, treat public interfaces as typed contracts, and keep filesystem paths in a single config instead of inline literals.",
    "developerName": "HernandoR",
    "category": "Productivity",
    "capabilities": [
      "Interactive",
      "Write"
    ],
    "defaultPrompt": [
      "Set this project up with uv.",
      "Collapse these scattered settings into one typed config.",
      "Replace these print calls with structured logging."
    ]
  }
}
plugins/implement/plugin.json
{
  "$schema": "https://agent-plugins.org/schemas/1.0.0/plugin.schema.json",
  "name": "implement",
  "version": "0.3.0",
  "description": "Python tooling: uv, pydantic config, loguru logging, typed interfaces, path config",
  "author": {
    "name": "HernandoR",
    "email": "[email protected]"
  },
  "homepage": "https://github.com/HernandoR/agent-skillset",
  "repository": "https://github.com/HernandoR/agent-skillset",
  "keywords": [
    "python",
    "uv",
    "pydantic",
    "loguru",
    "typing"
  ]
}

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

[implement on Agent Plugins Marketplace](https://pluginsmp.com/plugins/implement)