Agent Plugins Marketplace
All plugins

lang

v2.6.0

言語スキル群を提供するプラグイン。8個のスキル(Python・Go・R・Bash・データベース・SQLクエリ実践・MCP・アルゴリズム)を含む。Web/フロントエンド実装は web プラグインへ分離。

CodexClaude Code8 Skills

By sumik51 GitHub starsUpdated 1 hour ago

Directory evidence

Runtimes
Codex and Claude Code
Parsed components
8 skill or MCP entries
Source updated
Aug 29, 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 plugin

Installs for the current user
codex plugin marketplace add IchenDEV/agent-plugin-mkt
codex plugin marketplace upgrade agent-plugin-marketplace
codex plugin add lang@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/sumik5/sumik-llm-plugin

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

Plugin files

plugins/lang/
├── .codex-plugin/plugin.json
├── .claude-plugin/plugin.json
├── skills/developing-bash/SKILL.md
├── skills/developing-databases/SKILL.md
├── skills/developing-go/SKILL.md
├── skills/developing-mcp/SKILL.md
├── skills/developing-python/SKILL.md
├── skills/developing-r/SKILL.md
├── skills/solving-algorithms/SKILL.md
└── skills/writing-effective-sql/SKILL.md

Included Skills8

developing-bashskills/developing-bash/SKILL.md

Comprehensive Bash shell scripting and automation guide covering fundamentals, control flow, I/O pipelines, process control, system administration automation, testing/debugging, security, design patterns, and penetration testing automation (Nmap, web scanning, exploitation, Wi-Fi assessment, reporting). MUST load when .sh files are detected or shell scripts are being written. For Docker-specific patterns, use cloud:practicing-devops instead. For broader DevOps methodology, use cloud:practicing-devops instead.

developing-databasesskills/developing-databases/SKILL.md

Comprehensive database development guide covering relational design (ER modeling, normalization, PostgreSQL implementation), relation orthogonality and temporal data design (cross-relation duplication, 6NF verification, historical relation splitting), SQL antipatterns (25 patterns), database refactoring (schema migration, refactoring catalog), database internals (B-tree/LSM, distributed systems, consensus algorithms), PostgreSQL operations (config, extensions, query tuning, MVCC/VACUUM, backup/PITR, replication/HA, monitoring), and analytical batch pipeline operations (job flow, incremental/full-refresh updates, SQL job testing). Use when designing database schemas, eliminating cross-table duplication, designing time-versioned tables, planning schema refactoring, writing SQL queries, choosing storage engines, tuning PostgreSQL performance, managing backup/replication, or designing batch data pipelines. Replaces: designing-relational-databases, avoiding-sql-antipatterns, understanding-database-internals.

developing-goskills/developing-go/SKILL.md

Comprehensive Go development guide covering clean code practices, design patterns (GoF/concurrency/DDD/CQRS), production patterns (net/http server & client with chi, database/sql with sqlc/GORM, JSON/CSV/Excel formats, html/text templates, slog/zap/zerolog logging, graceful shutdown, distroless containers), and internals (type system/memory layout/reflection/G-M-P scheduler). MUST load when go.mod is detected or Go code is being written. Covers naming, error handling, goroutine/channel concurrency, table-driven testing, nil handling, project structure, function design, data structures, Functional Options, refactoring strategies, and performance optimization. For application logging design and structured logging patterns, use cloud:implementing-observability. For language-agnostic clean code/SOLID and refactoring, use devkit:writing-clean-code. For Clean Architecture/DDD strategic design, use devkit:applying-clean-architecture. For algorithm/data-structure complexity analysis, use solving-algorithms.

developing-mcpskills/developing-mcp/SKILL.md

Comprehensive MCP (Model Context Protocol) development guide covering architecture (Host/Client/Server roles, Tools/Resources/Prompts, Control Segregation), server and client implementation with TypeScript SDK (including MCP Gateway pattern and MCP Inspector debugging), protocol specification (JSON-RPC 2.0, stdio/Streamable HTTP transports, session management), security threats and countermeasures (Prompt Injection, Tool Poisoning, Shadowing, Rug Pull, OAuth 2.1 authorization, container sandboxing), and the MCP ecosystem (registries, official SDKs, A2A protocol relationship). MUST load when building MCP servers or clients. For Claude Code plugin MCP configuration, use devkit:authoring-plugins instead. For MCP integration with Vercel AI SDK in web apps, see ai:integrating-ai-web-apps. For consuming MCP tools from LangGraph agents, see ai:building-ai-agents.

developing-pythonskills/developing-python/SKILL.md

Modern Python development guide covering project setup, tooling, Pythonic best practices, OOP design principles, GoF design patterns, SE process, and type safety. MUST load when pyproject.toml or requirements.txt is detected. Covers Python 3.13 + uv + ruff + mypy, FastAPI/FastMCP, pytest, Docker, Pythonic best-practice idioms, software design patterns (encapsulation, LSP, Design by Contract), SE practices (SDLC, Scrum/Kanban, CI/CD, deployment), type safety rules (Any prohibition, TypedDict, Protocol, dataclass), Architecture Patterns (Repository, Unit of Work, Aggregates, Domain Events, CQRS, Event-Driven Architecture), and DDD Tactical Patterns (Value Object, Entity, Aggregate Root). For language-agnostic clean code principles, use devkit:writing-clean-code. For application logging design, use cloud:implementing-observability. For Clean Architecture in Python, see references/CA-PYTHON.md. For general Clean Architecture principles, use devkit:applying-clean-architecture.

developing-rskills/developing-r/SKILL.md

Comprehensive R development guide covering project setup, R scripts, packages, data structures, vectorization, tidyverse data wrangling, ggplot2 visualization, statistics, simulation, tidymodels machine learning, AI API workflows, Shiny dashboards, Quarto/R Markdown reporting, renv reproducibility, testthat testing, debugging, performance, parallel R, and C/C++/Python interop. MUST load when .R, .Rmd, .qmd, renv.lock, DESCRIPTION, NAMESPACE, .Rproj, app.R, RStudio, tidyverse, dplyr, ggplot2, Shiny, Quarto, R package development, or R data analysis is involved.

solving-algorithmsskills/solving-algorithms/SKILL.md

Comprehensive algorithm and data structure reference for competitive programming covering sorting, searching, trees, graphs, dynamic programming, computational geometry, and number theory with complexity analysis and language-agnostic implementations. Use when solving algorithmic problems, optimizing code for time/space complexity, or implementing classic data structures (stack, queue, heap, BST, union-find). For database-specific data structures (B-tree, LSM), use developing-databases instead.

writing-effective-sqlskills/writing-effective-sql/SKILL.md

Practical techniques for writing correct, effective, and fast SQL queries across engines: set-based declarative thinking, CASE expressions, conditional aggregation, descriptive statistics, and analysis patterns, GROUP BY/HAVING and characteristic functions, window functions (frames, inter-row comparison, correlated-subquery replacement, sessionization), joins and subqueries (self-join, cross join, outer-join pivot, tally/hierarchical), set operations and quantification (EXISTS, universal/existential), NULL and three-valued logic, and execution-plan-based query rewriting (SARGable predicates, slow-to-fast rewrite catalog, cross-DBMS dialect portability). Use when writing, reviewing, or optimizing SQL SELECT queries, choosing joins vs subqueries, applying window functions, or rewriting slow queries. For schema design, normalization, SQL antipatterns, DB internals, and PostgreSQL operations, use lang:developing-databases instead. For BigQuery/GCP analytics SQL, use cloud:developing-google-cloud instead.

Plugin manifests2

plugins/lang/.codex-plugin/plugin.json
{
  "name": "lang",
  "version": "2.6.0",
  "description": "言語スキル群を提供するプラグイン。8個のスキル(Python・Go・R・Bash・データベース・SQLクエリ実践・MCP・アルゴリズム)を含む。Web/フロントエンド実装は web プラグインへ分離。",
  "author": {
    "name": "sumik5"
  },
  "keywords": [
    "claude-code",
    "skills",
    "language",
    "framework",
    "frontend"
  ],
  "skills": "./skills/",
  "interface": {
    "displayName": "Sumik Lang",
    "shortDescription": "言語スキル(Python/Go/R/Bash/DB/MCP/アルゴリズム)を提供するプラグイン",
    "longDescription": "8個の言語スキルを提供。Python・Go・R・Bash・データベース・SQLクエリ実践・MCP・アルゴリズムをカバーします。Web/フロントエンド実装は web プラグインへ分離。",
    "developerName": "sumik5",
    "category": "Developer Tools",
    "capabilities": [
      "Read",
      "Write",
      "Edit",
      "Bash"
    ],
    "websiteURL": "https://github.com/sumik5/sumik-claude-plugin",
    "privacyPolicyURL": "https://example.com/privacy",
    "termsOfServiceURL": "https://example.com/terms",
    "defaultPrompt": [
      "developing-python でPythonコードを実装",
      "developing-go でGoサービスを構築",
      "developing-r でRのデータ分析スクリプトを作成",
      "developing-databases でスキーマを設計"
    ],
    "brandColor": "#3178C6"
  }
}
plugins/lang/.claude-plugin/plugin.json
{
  "name": "lang",
  "description": "sumik Claude Code Plugin (lang) — 言語スキル群(Python/Go/R/Bash/DB/MCP/アルゴリズム)。Web/フロントエンド実装は web プラグインへ分離。",
  "version": "2.6.0",
  "author": {
    "name": "sumik5"
  }
}

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

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