@theglitchking/gimme-the-lint 1.1.1 → 1.1.2

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.
Files changed (38) hide show
  1. package/.claude-plugin/marketplace.json +47 -0
  2. package/.claude-plugin/plugin.json +14 -40
  3. package/CHANGELOG.md +11 -0
  4. package/LICENSE +0 -0
  5. package/README.backup.md +0 -0
  6. package/README.md +0 -0
  7. package/agents/linting-agent.md +5 -0
  8. package/bin/gimme-the-lint.js +0 -0
  9. package/bin/postinstall.js +0 -0
  10. package/{.claude-plugin/commands → commands}/lint-baseline.md +4 -0
  11. package/{.claude-plugin/commands → commands}/lint-status.md +4 -0
  12. package/{.claude-plugin/commands → commands}/lint.md +4 -0
  13. package/githooks/install.sh +0 -0
  14. package/githooks/pre-commit +0 -0
  15. package/githooks/pre-push +0 -0
  16. package/install.sh +0 -0
  17. package/lib/config-manager.js +0 -0
  18. package/lib/directory-discovery.js +0 -0
  19. package/lib/drift-detector.js +0 -0
  20. package/lib/git-hooks-manager.js +0 -0
  21. package/lib/index.js +0 -0
  22. package/lib/installer.js +0 -0
  23. package/lib/manifest-manager.js +0 -0
  24. package/lib/venv-manager.js +0 -0
  25. package/package.json +2 -1
  26. package/scripts/dashboard.sh +0 -0
  27. package/scripts/eslint-baseline.sh +0 -0
  28. package/scripts/ruff-baseline.sh +0 -0
  29. package/scripts/run-checks.sh +0 -0
  30. package/scripts/setup-venv.sh +0 -0
  31. package/scripts/validate-version.sh +0 -0
  32. package/templates/.gitleaks.template.toml +0 -0
  33. package/templates/.pre-commit-config.template.yaml +0 -0
  34. package/templates/commitlint.config.template.js +0 -0
  35. package/templates/eslint.config.template.js +0 -0
  36. package/templates/pyproject.template.toml +0 -0
  37. package/templates/requirements.linting.txt +0 -0
  38. package/uninstall.sh +0 -0
@@ -0,0 +1,47 @@
1
+ {
2
+ "name": "gimme-the-lint-marketplace",
3
+ "owner": {
4
+ "name": "TheGlitchKing",
5
+ "email": "theglitchking@users.noreply.github.com"
6
+ },
7
+ "metadata": {
8
+ "description": "Official marketplace for gimme-the-lint - Progressive linting with directory-chunked baselines and drift detection",
9
+ "version": "1.1.2"
10
+ },
11
+ "plugins": [
12
+ {
13
+ "name": "gimme-the-lint",
14
+ "description": "Progressive linting system with directory-chunked baselines, drift detection, and auto-healing for monorepo projects (Python + JS/TS)",
15
+ "version": "1.1.2",
16
+ "author": {
17
+ "name": "TheGlitchKing"
18
+ },
19
+ "homepage": "https://github.com/TheGlitchKing/gimme-the-lint",
20
+ "repository": "https://github.com/TheGlitchKing/gimme-the-lint.git",
21
+ "license": "MIT",
22
+ "keywords": [
23
+ "linting",
24
+ "progressive-linting",
25
+ "eslint",
26
+ "ruff",
27
+ "python",
28
+ "monorepo",
29
+ "git-hooks",
30
+ "drift-detection",
31
+ "claude-code"
32
+ ],
33
+ "category": "productivity",
34
+ "tags": [
35
+ "linting",
36
+ "progressive",
37
+ "baseline",
38
+ "drift"
39
+ ],
40
+ "source": {
41
+ "source": "npm",
42
+ "package": "@theglitchking/gimme-the-lint"
43
+ },
44
+ "strict": true
45
+ }
46
+ ]
47
+ }
@@ -1,48 +1,22 @@
1
1
  {
2
2
  "name": "gimme-the-lint",
3
- "version": "1.0.0",
4
- "displayName": "Gimme The Lint",
5
- "description": "Progressive linting with directory-chunked baselines, drift detection, and auto-healing for monorepo projects",
3
+ "description": "Progressive linting system with directory-chunked baselines, drift detection, and auto-healing for monorepo projects (Python + JS/TS)",
4
+ "version": "1.1.2",
6
5
  "author": {
7
6
  "name": "TheGlitchKing",
8
- "email": "theglitchking@users.noreply.github.com",
9
- "github": "TheGlitchKing"
7
+ "email": "theglitchking@users.noreply.github.com"
10
8
  },
11
- "repository": {
12
- "type": "github",
13
- "owner": "TheGlitchKing",
14
- "repo": "gimme-the-lint",
15
- "url": "https://github.com/TheGlitchKing/gimme-the-lint"
16
- },
17
- "claudeCodeVersion": ">=1.0.0",
18
- "type": "claude-plugin",
19
- "category": "productivity",
20
- "tags": ["linting", "progressive-linting", "eslint", "ruff", "python", "monorepo", "git-hooks", "drift-detection"],
21
9
  "license": "MIT",
22
- "hooks": {},
23
- "commands": [
24
- {
25
- "name": "lint",
26
- "description": "Run progressive linting checks on the current project",
27
- "file": "commands/lint.md"
28
- },
29
- {
30
- "name": "lint:status",
31
- "description": "Show progressive linting dashboard with drift detection",
32
- "file": "commands/lint-status.md"
33
- },
34
- {
35
- "name": "lint:baseline",
36
- "description": "Create or refresh linting baselines",
37
- "file": "commands/lint-baseline.md"
38
- }
39
- ],
40
- "agents": [
41
- {
42
- "name": "linting-agent",
43
- "description": "Background agent that runs progressive linting and reports results",
44
- "type": "general-purpose",
45
- "file": "../agents/linting-agent.md"
46
- }
10
+ "homepage": "https://github.com/TheGlitchKing/gimme-the-lint",
11
+ "repository": "https://github.com/TheGlitchKing/gimme-the-lint",
12
+ "keywords": [
13
+ "linting",
14
+ "progressive-linting",
15
+ "eslint",
16
+ "ruff",
17
+ "python",
18
+ "monorepo",
19
+ "git-hooks",
20
+ "drift-detection"
47
21
  ]
48
22
  }
package/CHANGELOG.md CHANGED
@@ -5,6 +5,17 @@ All notable changes to this project will be documented in this file.
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
6
6
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
 
8
+ ## [1.1.2] - 2026-04-11
9
+
10
+ ### Fixed
11
+ - Plugin manifest now passes `claude plugin validate`. Rewrote `.claude-plugin/plugin.json` to the minimal schema Claude Code actually accepts (dropped `displayName`, `claudeCodeVersion`, `type`, `commands`, `agents`, `hooks` — all of those were either unsupported keys or wrongly-shaped arrays that the validator rejected).
12
+ - Moved command definitions from `.claude-plugin/commands/*.md` → `commands/*.md` at the repo root (Claude Code's auto-discovery convention).
13
+ - Added YAML frontmatter (`description` field) to all three command files and to `agents/linting-agent.md`.
14
+
15
+ ### Added
16
+ - `.claude-plugin/marketplace.json` — registers gimme-the-lint as a standalone Claude Code marketplace, so users can install with `claude plugin install gimme-the-lint@gimme-the-lint-marketplace`.
17
+ - `commands/` added to npm `files` array so the plugin's slash commands actually ship in the tarball.
18
+
8
19
  ## [1.1.1] - 2026-03-19
9
20
 
10
21
  ### Fixed
package/LICENSE CHANGED
File without changes
package/README.backup.md CHANGED
File without changes
package/README.md CHANGED
File without changes
@@ -1,3 +1,8 @@
1
+ ---
2
+ name: linting-agent
3
+ description: Runs progressive linting checks via gimme-the-lint and reports violations. Invoke when the user asks to lint, check code quality, fix lint errors, create/refresh baselines, or diagnose drift.
4
+ ---
5
+
1
6
  # Linting Agent
2
7
 
3
8
  You are a linting agent for gimme-the-lint. Your job is to run progressive linting checks and report results clearly.
File without changes
File without changes
@@ -1,3 +1,7 @@
1
+ ---
2
+ description: Create or refresh LTTF linting baselines (captures existing violations so only NEW ones block future commits)
3
+ ---
4
+
1
5
  # /lint:baseline - Create or Refresh Baselines
2
6
 
3
7
  Create LTTF baselines for progressive linting. Baselines capture existing violations so only NEW violations block commits.
@@ -1,3 +1,7 @@
1
+ ---
2
+ description: Show the progressive linting dashboard — baseline status, drift detection, and team ownership across all tracked directories
3
+ ---
4
+
1
5
  # /lint:status - Progressive Linting Dashboard
2
6
 
3
7
  Show the current state of progressive linting across the codebase.
@@ -1,3 +1,7 @@
1
+ ---
2
+ description: Run progressive linting checks on the current project (only NEW violations above the baseline are flagged)
3
+ ---
4
+
1
5
  # /lint - Progressive Linting
2
6
 
3
7
  Run progressive linting checks on the current project. Only NEW violations are flagged — baseline violations are ignored.
File without changes
File without changes
package/githooks/pre-push CHANGED
File without changes
package/install.sh CHANGED
File without changes
File without changes
File without changes
File without changes
File without changes
package/lib/index.js CHANGED
File without changes
package/lib/installer.js CHANGED
File without changes
File without changes
File without changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@theglitchking/gimme-the-lint",
3
- "version": "1.1.1",
3
+ "version": "1.1.2",
4
4
  "description": "Progressive linting system with directory-chunked baselines, drift detection, and auto-healing for monorepo projects (Python + JS/TS)",
5
5
  "keywords": [
6
6
  "linting",
@@ -52,6 +52,7 @@
52
52
  "githooks/",
53
53
  "lib/",
54
54
  ".claude-plugin/",
55
+ "commands/",
55
56
  "agents/",
56
57
  "docs/",
57
58
  "install.sh",
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
package/uninstall.sh CHANGED
File without changes