Agent Plugins Marketplace
All plugins

programming-tasuke

v2.2.0

General-purpose programming guidance for AI coding assistants.

Claude Code8 Skills

By ncaqLicense: Apache-2.03 GitHub starsUpdated 1 hour ago

Directory evidence

Runtimes
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
claude plugin marketplace add IchenDEV/agent-plugin-mkt
claude plugin marketplace update agent-plugin-marketplace
claude plugin install programming-tasuke@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/ncaq/konoka

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

Plugin files

plugins/programming-tasuke/
├── .claude-plugin/plugin.json
├── skills/command/SKILL.md
├── skills/comparison-operator/SKILL.md
├── skills/github/SKILL.md
├── skills/naming-rule/SKILL.md
├── skills/prefer-jq/SKILL.md
├── skills/prefer-yq/SKILL.md
├── skills/test/SKILL.md
└── skills/use-error-info/SKILL.md

Included Skills8

commandskills/command/SKILL.md

Guidelines for shell commands. Avoid `cat`, `find`, `grep`, `head`, and `tail`; prohibit `rm` (use `trash` instead). Use when invoking shell commands via Bash.

comparison-operatorskills/comparison-operator/SKILL.md

Prefer left-to-right ascending comparisons with less-than operators over greater-than operators, so values read in number-line order. Use when writing or reviewing comparison or range-check expressions.

githubskills/github/SKILL.md

How to access GitHub. Avoid direct URL fetches; prefer GitHub MCP tools or the `gh` CLI subcommands. Use when fetching GitHub information or operating on issues, pull requests, or workflows.

naming-ruleskills/naming-rule/SKILL.md

General naming rules across programming languages. Avoid meaningless words like `common` or `util`, and prefer singular base forms. Use when creating or reviewing names of files, directories, modules, functions, or variables.

prefer-jqskills/prefer-jq/SKILL.md

Prefer jq over Python or other general-purpose scripting languages for reading, filtering, or transforming JSON. Use when extracting values from JSON, parsing an API response, or writing anything that would otherwise reach for Python's json module or a `node -e` one-liner.

prefer-yqskills/prefer-yq/SKILL.md

Prefer yq over Python or ad-hoc text substitution for reading or transforming YAML, XML, TOML, and CSV. Assumes mikefarah/yq, whose syntax differs from the Python-based kislyuk/yq. Use when reading or rewriting configuration files in those formats from the command line.

testskills/test/SKILL.md

Test code conventions. Modify tests only for genuine spec or architecture changes—never trivialize, skip, or align expected values to a buggy implementation. Avoid implementation branches that depend on specific test data values. Use when writing or modifying test code, or when tests are failing.

use-error-infoskills/use-error-info/SKILL.md

When handling errors locally instead of propagating them, include the error data in logs or messages. Never discard caught errors with `_`. Use when writing try/catch, Result handling, or error case branches.

Plugin manifests1

plugins/programming-tasuke/.claude-plugin/plugin.json
{
  "$schema": "https://json.schemastore.org/claude-code-plugin-manifest.json",
  "name": "programming-tasuke",
  "version": "2.2.0",
  "description": "General-purpose programming guidance for AI coding assistants.",
  "dependencies": [
    "commit"
  ],
  "author": {
    "name": "ncaq",
    "email": "[email protected]",
    "url": "https://github.com/ncaq"
  },
  "homepage": "https://github.com/ncaq/konoka/tree/master/plugins/programming-tasuke",
  "repository": "https://github.com/ncaq/konoka",
  "license": "Apache-2.0",
  "keywords": [
    "programming",
    "general",
    "knowledge"
  ]
}

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

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