@abdullah-alnahas/claude-sdd 0.1.0 → 0.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 abdullah-alnahas
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/README.md CHANGED
@@ -5,11 +5,15 @@ A Claude Code plugin that enforces disciplined software development: behavioral
5
5
  ## Installation
6
6
 
7
7
  ```bash
8
- # Local development
9
- claude --plugin-dir /path/to/sdd
8
+ # From npm (recommended)
9
+ claude plugins add @abdullah-alnahas/claude-sdd
10
10
 
11
- # Or symlink into Claude plugins directory
12
- ln -s /path/to/sdd ~/.claude/plugins/sdd
11
+ # From GitHub
12
+ git clone https://github.com/abdullah-alnahas/claude-sdd.git
13
+ claude plugins add ./claude-sdd
14
+
15
+ # For local development
16
+ claude plugins add /path/to/sdd
13
17
  ```
14
18
 
15
19
  ## What It Does
package/agents/critic.md CHANGED
@@ -1,4 +1,5 @@
1
1
  ---
2
+ name: critic
2
3
  description: >
3
4
  Adversarial code reviewer that finds logical errors, invalid assumptions, spec drift, and requirement gaps.
4
5
  Use when you need an honest, direct assessment of code quality and correctness.
@@ -1,4 +1,5 @@
1
1
  ---
2
+ name: security-reviewer
2
3
  description: >
3
4
  Security analysis agent that reviews code for OWASP Top 10 vulnerabilities, input validation gaps,
4
5
  auth/authz issues, and injection risks. Use when reviewing code for security concerns.
@@ -1,4 +1,5 @@
1
1
  ---
2
+ name: simplifier
2
3
  description: >
3
4
  Complexity reducer that proposes simpler alternatives, identifies unnecessary abstractions,
4
5
  and flags overengineering. Use when reviewing code for simplicity or after implementation.
@@ -1,4 +1,5 @@
1
1
  ---
2
+ name: spec-compliance
2
3
  description: >
3
4
  Spec adherence checker that compares implementation against spec documents, flags deviations,
4
5
  and verifies traceability from behavior spec to tests to code.
@@ -47,6 +48,13 @@ You methodically compare what was specified against what was built. Every accept
47
48
  [X of Y criteria satisfied. Z deviations found.]
48
49
  ```
49
50
 
51
+ ## No Spec Available
52
+
53
+ If no behavior spec exists for the code under review:
54
+ 1. Report clearly: "No behavior spec found for this code."
55
+ 2. Suggest creating one: "Run `/sdd-phase specify` or use the spec-first skill to create a behavior spec before verifying compliance."
56
+ 3. Do NOT attempt to invent criteria — without a spec, compliance checking is not meaningful.
57
+
50
58
  ## Principles
51
59
 
52
60
  - The spec is the source of truth, not the implementation
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@abdullah-alnahas/claude-sdd",
3
- "version": "0.1.0",
3
+ "version": "0.2.0",
4
4
  "description": "Spec-Driven Development discipline system for Claude Code — behavioral guardrails, spec-first development, architecture awareness, TDD enforcement, iterative execution loops",
5
5
  "keywords": [
6
6
  "claude-code-plugin",
@@ -14,7 +14,7 @@
14
14
  "license": "MIT",
15
15
  "repository": {
16
16
  "type": "git",
17
- "url": "https://github.com/abdullah-alnahas/claude-sdd.git"
17
+ "url": "git+https://github.com/abdullah-alnahas/claude-sdd.git"
18
18
  },
19
19
  "author": "abdullah-alnahas"
20
20
  }