Agent Plugins Marketplace
All plugins

working-discipline

v3.31.0

AI 工作纪律 - 纪律分三层注入(SessionStart 会话级 / 每轮零章与自查 / 子代理版),下沉 4 个 guard:3 道硬拦 + 1 道事后提醒。零 skill,适合全局开启。设计依据与实测见 README

Claude Code

By zhangq0 GitHub starsUpdated 4 days ago

Directory evidence

Runtimes
Claude Code
Parsed components
0 skill or MCP entries
Source updated
Sep 19, 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 working-discipline 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 working-discipline@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/ibootz/claude-devkit-marketplace

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

Plugin files

plugins/working-discipline/
└── .claude-plugin/plugin.json

Plugin manifests1

plugins/working-discipline/.claude-plugin/plugin.json
{
  "name": "working-discipline",
  "version": "3.31.0",
  "description": "AI 工作纪律 - 纪律分三层注入(SessionStart 会话级 / 每轮零章与自查 / 子代理版),下沉 4 个 guard:3 道硬拦 + 1 道事后提醒。零 skill,适合全局开启。设计依据与实测见 README",
  "author": {
    "name": "zhangq"
  },
  "hooks": {
    "PreToolUse": [
      {
        "matcher": "Agent",
        "hooks": [
          {
            "type": "command",
            "command": "node ${CLAUDE_PLUGIN_ROOT}/hooks/guards/agent-dispatch.js"
          }
        ]
      },
      {
        "matcher": "Bash",
        "hooks": [
          {
            "type": "command",
            "command": "node ${CLAUDE_PLUGIN_ROOT}/hooks/guards/bash-guard.js"
          }
        ]
      },
      {
        "matcher": "Agent|Read|Grep|Glob|Bash",
        "hooks": [
          {
            "type": "command",
            "command": "node ${CLAUDE_PLUGIN_ROOT}/hooks/guards/probe-throttle.js"
          }
        ]
      }
    ],
    "PostToolUse": [
      {
        "matcher": "Write|Edit",
        "hooks": [
          {
            "type": "command",
            "command": "node ${CLAUDE_PLUGIN_ROOT}/hooks/guards/write-guard.js"
          }
        ]
      }
    ],
    "SessionStart": [
      {
        "matcher": "*",
        "hooks": [
          {
            "type": "command",
            "command": "node ${CLAUDE_PLUGIN_ROOT}/hooks/working-discipline.js"
          }
        ]
      }
    ],
    "UserPromptSubmit": [
      {
        "matcher": "*",
        "hooks": [
          {
            "type": "command",
            "command": "node ${CLAUDE_PLUGIN_ROOT}/hooks/working-discipline.js"
          },
          {
            "type": "command",
            "command": "node ${CLAUDE_PLUGIN_ROOT}/hooks/dispatch-ledger.js"
          }
        ]
      }
    ],
    "SubagentStart": [
      {
        "hooks": [
          {
            "type": "command",
            "command": "node ${CLAUDE_PLUGIN_ROOT}/hooks/working-discipline.js"
          }
        ]
      }
    ]
  }
}

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

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