jaymd96-pants-baseline 0.2.0__py3-none-any.whl → 0.2.1__py3-none-any.whl

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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: jaymd96-pants-baseline
3
- Version: 0.2.0
3
+ Version: 0.2.1
4
4
  Summary: Opinionated Python code quality baseline plugin for Pants build system
5
5
  Project-URL: Homepage, https://github.com/jaymd96/pants-baseline
6
6
  Project-URL: Repository, https://github.com/jaymd96/pants-baseline.git
@@ -1,6 +1,6 @@
1
- pants_baseline/__about__.py,sha256=wxKDEvde9_K-nhyadAqBTbIh_mR7ckFwDJRU14BkV8A,98
1
+ pants_baseline/__about__.py,sha256=KO4Y6BlVVg2cR9992xkSoghP9MdW5HwHF0z7Rv92bkk,98
2
2
  pants_baseline/__init__.py,sha256=uVRGi1D2gFjc7emmeewWdcvpO-NsUuKsMbX3rztOxWU,655
3
- pants_baseline/bundled_claude_plugins.py,sha256=jfNzFrvZBvv8Iz1XMLomgIa993ZYH_DMNOk-apFs8-g,926
3
+ pants_baseline/bundled_claude_plugins.py,sha256=rHchQRQ_UabOOKyQOxVwoyE2xLjE8eiUFVN7oERDCe0,1608
4
4
  pants_baseline/register.py,sha256=gdODsaI7VIzU2tGONANsg9KbKZkHidmLs2AyvUNIypg,1675
5
5
  pants_baseline/targets.py,sha256=Z9O09Aqd5inMqwIUFt4HSE9HtWjn8pGSU4FZHg22Tpo,3379
6
6
  pants_baseline/goals/__init__.py,sha256=pf6KU2CIQuDkx8ER3IS0H-kuNbBtX-AH5B5SnSP9_yw,192
@@ -20,7 +20,7 @@ pants_baseline/subsystems/baseline.py,sha256=KWDRMdLOUN5cNHntY8f97bSsoITXwmX4ET6
20
20
  pants_baseline/subsystems/ruff.py,sha256=NW0AFv59-j6ANkZG8LjvuXPzWBD4yDsEr7Pb6eZbdck,3941
21
21
  pants_baseline/subsystems/ty.py,sha256=OpaU8Z7Bk6kj5QAfhPom5L9v8sKNR8XF664_U5mUVJw,3419
22
22
  pants_baseline/subsystems/uv.py,sha256=dXmVzg4ZxzHa4g_TowEZXMYuhKiTOHjqqadkNrZQ9jk,3066
23
- jaymd96_pants_baseline-0.2.0.dist-info/METADATA,sha256=XsPPcHLtQ4TdFAAjbezNEDcPhcw_Hj7t68NiNwlfcIc,8764
24
- jaymd96_pants_baseline-0.2.0.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
25
- jaymd96_pants_baseline-0.2.0.dist-info/licenses/LICENSE,sha256=oLGLZv7XKM_oKCbdMW1bZB37SXsdexmhNSuh3Xg4m4I,10754
26
- jaymd96_pants_baseline-0.2.0.dist-info/RECORD,,
23
+ jaymd96_pants_baseline-0.2.1.dist-info/METADATA,sha256=zAxBDUFXmo7cfeT2rDn1eF0LH64MlZ_jmmAC56MbMRo,8764
24
+ jaymd96_pants_baseline-0.2.1.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
25
+ jaymd96_pants_baseline-0.2.1.dist-info/licenses/LICENSE,sha256=oLGLZv7XKM_oKCbdMW1bZB37SXsdexmhNSuh3Xg4m4I,10754
26
+ jaymd96_pants_baseline-0.2.1.dist-info/RECORD,,
@@ -1,4 +1,4 @@
1
1
  """Version information for jaymd96-pants-baseline."""
2
2
 
3
- __version__ = "0.2.0"
3
+ __version__ = "0.2.1"
4
4
  __author__ = "James"
@@ -7,23 +7,34 @@ This requires the jaymd96-pants-claude-plugins package to be installed.
7
7
  """
8
8
 
9
9
  # Marketplaces to add before installing plugins
10
- # The demo marketplace contains commit-commands and other workflow plugins
10
+ # Format: GitHub "owner/repo" - the marketplace name comes from marketplace.json
11
11
  BUNDLED_MARKETPLACES = [
12
- "anthropics/claude-code", # Demo plugins marketplace
12
+ "anthropics/claude-code", # Adds marketplace named "claude-code-plugins"
13
+ "jaymd96/pants-baseline", # Adds marketplace named "pants-baseline"
13
14
  ]
14
15
 
15
16
  # Claude Code plugins to install
17
+ # Note: "marketplace" must match the "name" field in the marketplace.json, NOT the GitHub path
16
18
  BUNDLED_CLAUDE_PLUGINS = [
19
+ # Official Anthropic plugins (from claude-plugins-official, pre-configured)
17
20
  {
18
21
  "plugin": "github",
19
22
  "marketplace": "claude-plugins-official",
20
23
  "scope": "project",
21
24
  "description": "GitHub integration for PR workflows and issue management",
22
25
  },
26
+ # From anthropics/claude-code marketplace (named "claude-code-plugins")
23
27
  {
24
28
  "plugin": "commit-commands",
25
- "marketplace": "anthropics-claude-code",
29
+ "marketplace": "claude-code-plugins",
26
30
  "scope": "project",
27
31
  "description": "Git workflow commands for commits, pushes, and PRs",
28
32
  },
33
+ # pants-baseline skills plugin (from jaymd96/pants-baseline, named "pants-baseline")
34
+ {
35
+ "plugin": "pants-baseline",
36
+ "marketplace": "pants-baseline",
37
+ "scope": "project",
38
+ "description": "Intelligent skills for baseline-lint, baseline-fmt, baseline-typecheck, baseline-test, baseline-audit",
39
+ },
29
40
  ]