claude-jacked 0.2.3__py3-none-any.whl → 0.2.9__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.
Files changed (33) hide show
  1. claude_jacked-0.2.9.dist-info/METADATA +523 -0
  2. claude_jacked-0.2.9.dist-info/RECORD +33 -0
  3. jacked/cli.py +752 -47
  4. jacked/client.py +196 -29
  5. jacked/data/agents/code-simplicity-reviewer.md +87 -0
  6. jacked/data/agents/defensive-error-handler.md +93 -0
  7. jacked/data/agents/double-check-reviewer.md +214 -0
  8. jacked/data/agents/git-pr-workflow-manager.md +149 -0
  9. jacked/data/agents/issue-pr-coordinator.md +131 -0
  10. jacked/data/agents/pr-workflow-checker.md +199 -0
  11. jacked/data/agents/readme-maintainer.md +123 -0
  12. jacked/data/agents/test-coverage-engineer.md +155 -0
  13. jacked/data/agents/test-coverage-improver.md +139 -0
  14. jacked/data/agents/wiki-documentation-architect.md +580 -0
  15. jacked/data/commands/audit-rules.md +103 -0
  16. jacked/data/commands/dc.md +155 -0
  17. jacked/data/commands/learn.md +89 -0
  18. jacked/data/commands/pr.md +4 -0
  19. jacked/data/commands/redo.md +85 -0
  20. jacked/data/commands/techdebt.md +115 -0
  21. jacked/data/prompts/security_gatekeeper.txt +58 -0
  22. jacked/data/rules/jacked_behaviors.md +11 -0
  23. jacked/data/skills/jacked/SKILL.md +162 -0
  24. jacked/index_write_tracker.py +227 -0
  25. jacked/indexer.py +255 -129
  26. jacked/retriever.py +389 -137
  27. jacked/searcher.py +65 -13
  28. jacked/transcript.py +339 -0
  29. claude_jacked-0.2.3.dist-info/METADATA +0 -483
  30. claude_jacked-0.2.3.dist-info/RECORD +0 -13
  31. {claude_jacked-0.2.3.dist-info → claude_jacked-0.2.9.dist-info}/WHEEL +0 -0
  32. {claude_jacked-0.2.3.dist-info → claude_jacked-0.2.9.dist-info}/entry_points.txt +0 -0
  33. {claude_jacked-0.2.3.dist-info → claude_jacked-0.2.9.dist-info}/licenses/LICENSE +0 -0
@@ -0,0 +1,523 @@
1
+ Metadata-Version: 2.4
2
+ Name: claude-jacked
3
+ Version: 0.2.9
4
+ Summary: Cross-machine semantic search for Claude Code sessions
5
+ Project-URL: Homepage, https://github.com/jackneil/claude-jacked
6
+ Project-URL: Repository, https://github.com/jackneil/claude-jacked
7
+ Project-URL: Issues, https://github.com/jackneil/claude-jacked/issues
8
+ Author-email: Jack Neil <jack@jackmd.com>
9
+ License-Expression: MIT
10
+ License-File: LICENSE
11
+ Keywords: ai,claude,context,qdrant,semantic-search
12
+ Classifier: Development Status :: 4 - Beta
13
+ Classifier: Intended Audience :: Developers
14
+ Classifier: License :: OSI Approved :: MIT License
15
+ Classifier: Programming Language :: Python :: 3
16
+ Classifier: Programming Language :: Python :: 3.10
17
+ Classifier: Programming Language :: Python :: 3.11
18
+ Classifier: Programming Language :: Python :: 3.12
19
+ Requires-Python: >=3.10
20
+ Requires-Dist: click>=8.0.0
21
+ Requires-Dist: python-dotenv>=1.0.0
22
+ Requires-Dist: qdrant-client>=1.7.0
23
+ Requires-Dist: rich>=13.0.0
24
+ Provides-Extra: dev
25
+ Requires-Dist: pytest-cov>=4.0.0; extra == 'dev'
26
+ Requires-Dist: pytest>=7.0.0; extra == 'dev'
27
+ Description-Content-Type: text/markdown
28
+
29
+ # claude-jacked
30
+
31
+ **Never lose your Claude Code work again.** Search past conversations, share solutions with your team, and get AI-powered code reviews—all from within Claude Code.
32
+
33
+ ---
34
+
35
+ ## What You Get
36
+
37
+ - **Find past solutions instantly** — "How did I fix that login bug last month?" Just ask, and get the answer.
38
+ - **Work from any computer** — Start on your desktop, continue on your laptop. Your history follows you.
39
+ - **Share knowledge with your team** — Your teammate already solved this problem. Find their solution in seconds.
40
+ - **Catch mistakes before they ship** — Built-in reviewers check for security issues, complexity, and common bugs.
41
+ - **Sound notifications** — Get audio alerts when Claude needs your attention or finishes a task.
42
+
43
+ ---
44
+
45
+ ## Table of Contents
46
+
47
+ - [Quick Start](#quick-start)
48
+ - [What's Included](#whats-included)
49
+ - [Using the Session Search](#using-the-session-search)
50
+ - [Working with Your Team](#working-with-your-team)
51
+ - [Built-in Reviewers and Commands](#built-in-reviewers-and-commands)
52
+ - [Sound Notifications](#sound-notifications)
53
+ - [Uninstall](#uninstall)
54
+ - [Common Issues](#common-issues)
55
+ - [Advanced / Technical Reference](#advanced--technical-reference)
56
+
57
+ ---
58
+
59
+ ## Quick Start
60
+
61
+ ### Option 1: Let Claude Install It For You
62
+
63
+ Copy this into Claude Code and it will handle everything:
64
+
65
+ ```
66
+ Install claude-jacked for me. Walk me through each step and help me set up Qdrant Cloud.
67
+ ```
68
+
69
+ ### Option 2: One-Line Install
70
+
71
+ **Mac/Linux:**
72
+ ```bash
73
+ curl -sSL https://raw.githubusercontent.com/jackneil/claude-jacked/master/install.sh | bash
74
+ ```
75
+
76
+ **Windows (in Git Bash):**
77
+ ```bash
78
+ curl -sSL https://raw.githubusercontent.com/jackneil/claude-jacked/master/install.sh | bash
79
+ ```
80
+
81
+ After installing, you'll need to set up a free cloud database (Qdrant) to store your session history. The installer will guide you through this, or ask Claude to help: `"Help me set up Qdrant Cloud for jacked"`
82
+
83
+ ### Option 3: Manual Install
84
+
85
+ ```bash
86
+ pipx install claude-jacked
87
+ jacked install
88
+ ```
89
+
90
+ Then follow the [cloud database setup](#cloud-database-setup-qdrant) instructions below.
91
+
92
+ ---
93
+
94
+ ## What's Included
95
+
96
+ When you run `jacked install`, you get:
97
+
98
+ | Feature | What It Does |
99
+ |---------|--------------|
100
+ | **Session Search** | Find any past Claude conversation by describing what you were working on |
101
+ | **10 Smart Reviewers** | AI assistants that check your code for bugs, security issues, and complexity |
102
+ | **Quick Commands** | `/dc` for code review, `/pr` for pull request help |
103
+ | **Team Sharing** | Search your teammates' sessions (with their permission) |
104
+
105
+ ---
106
+
107
+ ## Using the Session Search
108
+
109
+ Once installed, you can search your past Claude sessions right from within Claude Code.
110
+
111
+ ### Example: Finding Past Work
112
+
113
+ You're working on user authentication and remember solving something similar before:
114
+
115
+ ```
116
+ /jacked user authentication login
117
+ ```
118
+
119
+ Claude will show you matching sessions:
120
+
121
+ ```
122
+ Search Results:
123
+ # Score User Age Repo Preview
124
+ 1 92% YOU 3d ago my-app Implementing JWT auth with refresh tokens...
125
+ 2 85% YOU 2w ago api-server Adding password reset flow...
126
+ 3 78% @sam 1w ago shared-lib OAuth2 integration with Google...
127
+ ```
128
+
129
+ Pick one to load that context into your current session.
130
+
131
+ ### Example: Resuming Work from Another Computer
132
+
133
+ You started building a feature on your desktop. Now you're on your laptop:
134
+
135
+ ```
136
+ /jacked that shopping cart feature I was building
137
+ ```
138
+
139
+ Claude finds it and you can continue right where you left off.
140
+
141
+ ### Example: Learning from Teammates
142
+
143
+ Your teammate Sam already built something similar:
144
+
145
+ ```
146
+ /jacked how did Sam implement the payment system
147
+ ```
148
+
149
+ You can see Sam's approach without bothering them.
150
+
151
+ ---
152
+
153
+ ## Working with Your Team
154
+
155
+ Share knowledge across your team by using the same cloud database.
156
+
157
+ ### Setting Up Team Sharing
158
+
159
+ 1. **One person** creates a Qdrant Cloud account and shares the credentials
160
+ 2. **Everyone** adds the same credentials to their computer
161
+ 3. **Each person** sets their name so sessions are attributed correctly
162
+
163
+ ```bash
164
+ # Everyone uses the same database
165
+ export QDRANT_CLAUDE_SESSIONS_ENDPOINT="https://team-cluster.qdrant.io"
166
+ export QDRANT_CLAUDE_SESSIONS_API_KEY="team-api-key"
167
+
168
+ # Each person sets their own name
169
+ export JACKED_USER_NAME="sarah"
170
+ ```
171
+
172
+ ### Searching Team Sessions
173
+
174
+ ```
175
+ /jacked payment processing # Shows your work first, then teammates
176
+ /jacked payment processing --mine # Only your sessions
177
+ /jacked payment processing --user sam # Only Sam's sessions
178
+ ```
179
+
180
+ ---
181
+
182
+ ## Built-in Reviewers and Commands
183
+
184
+ ### Quick Commands
185
+
186
+ Type these directly in Claude Code:
187
+
188
+ | Command | What It Does |
189
+ |---------|--------------|
190
+ | `/dc` | **Double-check** — Reviews your recent work for bugs, security issues, and problems |
191
+ | `/pr` | **Pull Request** — Helps organize your changes and create a clean PR |
192
+
193
+ ### Smart Reviewers
194
+
195
+ These work automatically when Claude thinks they'd help, or you can ask for them:
196
+
197
+ | Reviewer | What It Catches |
198
+ |----------|-----------------|
199
+ | **Double-check** | Security holes, authentication gaps, data leaks |
200
+ | **Code Simplicity** | Over-complicated code, unnecessary abstractions |
201
+ | **Error Handler** | Missing error handling, potential crashes |
202
+ | **Test Coverage** | Untested code, missing edge cases |
203
+
204
+ **Example:** After building a new feature:
205
+ ```
206
+ Use the double-check reviewer to review what we just built
207
+ ```
208
+
209
+ ---
210
+
211
+ ## Sound Notifications
212
+
213
+ Get audio alerts so you don't have to watch the terminal:
214
+
215
+ ```bash
216
+ jacked install --sounds
217
+ ```
218
+
219
+ - **Notification sound** — Plays when Claude needs your input
220
+ - **Completion sound** — Plays when Claude finishes a task
221
+
222
+ Works on Windows, Mac, and Linux. To remove sounds later:
223
+ ```bash
224
+ jacked uninstall --sounds
225
+ ```
226
+
227
+ ---
228
+
229
+ ## Uninstall
230
+
231
+ **Remove everything:**
232
+ ```bash
233
+ jacked uninstall && pipx uninstall claude-jacked
234
+ ```
235
+
236
+ **Or one-liner:**
237
+ ```bash
238
+ curl -sSL https://raw.githubusercontent.com/jackneil/claude-jacked/master/uninstall.sh | bash
239
+ ```
240
+
241
+ Your cloud database stays intact, so you won't lose your history if you reinstall later.
242
+
243
+ ---
244
+
245
+ ## Common Issues
246
+
247
+ ### "I installed it but search isn't working"
248
+
249
+ You need to set up the cloud database first. Ask Claude:
250
+ ```
251
+ Help me set up Qdrant Cloud for jacked
252
+ ```
253
+
254
+ ### "It says 'jacked: command not found'"
255
+
256
+ The install didn't add jacked to your PATH. Try:
257
+ ```bash
258
+ pipx ensurepath
259
+ ```
260
+ Then restart your terminal.
261
+
262
+ ### "My sessions aren't showing up in search"
263
+
264
+ Run this to index your existing sessions:
265
+ ```bash
266
+ jacked backfill
267
+ ```
268
+
269
+ ### "I'm on Windows and getting weird errors"
270
+
271
+ Claude Code on Windows uses Git Bash, which can have path issues. Ask Claude:
272
+ ```
273
+ Help me fix jacked path issues on Windows
274
+ ```
275
+
276
+ ---
277
+
278
+ ## Cloud Database Setup (Qdrant)
279
+
280
+ The session search feature stores your conversations in a cloud database so you can access them from any computer.
281
+
282
+ ### Why Qdrant?
283
+
284
+ - **Smart search** — Find sessions by meaning, not just keywords
285
+ - **Works everywhere** — Access from any computer
286
+ - **Team sharing** — Everyone can search the same database
287
+ - **You control it** — Your data stays in your own database
288
+
289
+ ### Setting Up Qdrant Cloud
290
+
291
+ 1. Go to [cloud.qdrant.io](https://cloud.qdrant.io) and create an account
292
+ 2. Create a new cluster (the paid tier ~$30/month is required for the search features)
293
+ 3. Copy your cluster URL and API key
294
+ 4. Add them to your shell profile:
295
+
296
+ **Mac/Linux** — Add to `~/.bashrc` or `~/.zshrc`:
297
+ ```bash
298
+ export QDRANT_CLAUDE_SESSIONS_ENDPOINT="https://your-cluster.qdrant.io"
299
+ export QDRANT_CLAUDE_SESSIONS_API_KEY="your-api-key"
300
+ ```
301
+
302
+ **Windows** — Add to your environment variables, or add to `~/.bashrc` in Git Bash.
303
+
304
+ 5. Restart your terminal and run:
305
+ ```bash
306
+ jacked backfill # Index your existing sessions
307
+ jacked status # Verify it's working
308
+ ```
309
+
310
+ ---
311
+
312
+ ## Security Note
313
+
314
+ **Your conversations are sent to Qdrant Cloud.** This includes:
315
+ - Everything you and Claude discuss
316
+ - Code snippets you share
317
+ - File paths on your computer
318
+
319
+ **Recommendations:**
320
+ - Don't paste passwords or API keys in Claude sessions
321
+ - Keep your Qdrant API key private
322
+ - For sensitive work, consider self-hosting Qdrant
323
+
324
+ ---
325
+
326
+ ## Advanced / Technical Reference
327
+
328
+ <details>
329
+ <summary><strong>CLI Command Reference</strong></summary>
330
+
331
+ ```bash
332
+ # Search
333
+ jacked search "query" # Search all sessions
334
+ jacked search "query" --mine # Only your sessions
335
+ jacked search "query" --user name # Specific teammate
336
+ jacked search "query" --repo path # Boost specific repo
337
+
338
+ # Session Management
339
+ jacked sessions # List indexed sessions
340
+ jacked retrieve <session_id> # Get session content
341
+ jacked retrieve <id> --mode full # Get full transcript
342
+ jacked delete <session_id> # Remove from index
343
+ jacked cleardb # Delete all your data
344
+
345
+ # Setup
346
+ jacked install # Install hooks, agents, commands
347
+ jacked install --sounds # Also add sound notifications
348
+ jacked uninstall # Remove from Claude Code
349
+ jacked uninstall --sounds # Remove only sounds
350
+ jacked backfill # Index all existing sessions
351
+ jacked backfill --force # Re-index everything
352
+ jacked status # Check connectivity
353
+ jacked configure --show # Show current config
354
+ ```
355
+
356
+ </details>
357
+
358
+ <details>
359
+ <summary><strong>Environment Variables</strong></summary>
360
+
361
+ **Required:**
362
+ | Variable | Description |
363
+ |----------|-------------|
364
+ | `QDRANT_CLAUDE_SESSIONS_ENDPOINT` | Your Qdrant Cloud URL |
365
+ | `QDRANT_CLAUDE_SESSIONS_API_KEY` | Your Qdrant API key |
366
+
367
+ **Optional:**
368
+ | Variable | Default | Description |
369
+ |----------|---------|-------------|
370
+ | `JACKED_USER_NAME` | git username | Your name for team attribution |
371
+ | `JACKED_TEAMMATE_WEIGHT` | 0.8 | How much to weight teammate results |
372
+ | `JACKED_OTHER_REPO_WEIGHT` | 0.7 | How much to weight other repos |
373
+ | `JACKED_TIME_DECAY_HALFLIFE_WEEKS` | 35 | How fast old sessions lose relevance |
374
+
375
+ </details>
376
+
377
+ <details>
378
+ <summary><strong>How It Works (Technical)</strong></summary>
379
+
380
+ ```
381
+ ┌─────────────────────────────────────────────────────────────┐
382
+ │ YOUR MACHINE │
383
+ │ │
384
+ │ Claude Code │
385
+ │ ├── Stop hook → jacked index (after every response) │
386
+ │ └── /jacked skill → search + load context │
387
+ │ │
388
+ │ ~/.claude/projects/ │
389
+ │ └── {repo}/ │
390
+ │ └── {session}.jsonl ←── parsed and indexed │
391
+ └─────────────────────────────────────────────────────────────┘
392
+
393
+ │ HTTPS
394
+
395
+ ┌─────────────────────────────────────────────────────────────┐
396
+ │ QDRANT CLOUD │
397
+ │ │
398
+ │ • Server-side embedding (no local ML needed) │
399
+ │ • Vectors + transcripts stored │
400
+ │ • Accessible from any machine │
401
+ └─────────────────────────────────────────────────────────────┘
402
+ ```
403
+
404
+ **Indexing:** After each Claude response, a hook automatically indexes the session to Qdrant. The indexer extracts:
405
+ - Plan files (implementation strategies)
406
+ - Agent summaries (exploration results)
407
+ - Summary labels (chapter titles from auto-compaction)
408
+ - User messages (for intent matching)
409
+
410
+ **Retrieval modes:**
411
+ - `smart` (default): Plan + summaries + labels (~5-10K tokens)
412
+ - `full`: Complete transcript (50-200K tokens)
413
+ - `plan`: Just the plan file
414
+ - `agents`: Just agent summaries
415
+ - `labels`: Just summary labels (tiny)
416
+
417
+ </details>
418
+
419
+ <details>
420
+ <summary><strong>All Agents</strong></summary>
421
+
422
+ | Agent | Description |
423
+ |-------|-------------|
424
+ | `double-check-reviewer` | CTO/CSO-level review for security, auth gaps, data leaks |
425
+ | `code-simplicity-reviewer` | Reviews for over-engineering and unnecessary complexity |
426
+ | `defensive-error-handler` | Audits error handling and adds defensive patterns |
427
+ | `git-pr-workflow-manager` | Manages branches, commits, and PR organization |
428
+ | `pr-workflow-checker` | Checks PR status and handles PR lifecycle |
429
+ | `issue-pr-coordinator` | Scans issues, groups related ones, manages PR workflows |
430
+ | `test-coverage-engineer` | Analyzes and improves test coverage |
431
+ | `test-coverage-improver` | Adds doctests and test files systematically |
432
+ | `readme-maintainer` | Keeps README in sync with code changes |
433
+ | `wiki-documentation-architect` | Creates/maintains GitHub Wiki documentation |
434
+
435
+ </details>
436
+
437
+ <details>
438
+ <summary><strong>Hook Configuration</strong></summary>
439
+
440
+ The `jacked install` command adds this to `~/.claude/settings.json`:
441
+
442
+ ```json
443
+ {
444
+ "hooks": {
445
+ "Stop": [{
446
+ "matcher": "",
447
+ "hooks": [{
448
+ "type": "command",
449
+ "command": "jacked index --repo \"$CLAUDE_PROJECT_DIR\""
450
+ }]
451
+ }]
452
+ }
453
+ }
454
+ ```
455
+
456
+ </details>
457
+
458
+ <details>
459
+ <summary><strong>Guided Install Prompt (for Claude)</strong></summary>
460
+
461
+ Copy this into Claude Code for a guided installation:
462
+
463
+ ```
464
+ Install claude-jacked for me. First check what's already set up, then help me with anything missing:
465
+
466
+ DIAGNOSTIC PHASE (run these first to see current state):
467
+ - Detect my operating system
468
+ - Check if pipx is installed: pipx --version
469
+ - Check if jacked CLI is installed: jacked --version
470
+ - Check if Qdrant credentials are set: echo $QDRANT_CLAUDE_SESSIONS_ENDPOINT
471
+ - Check if hook is installed: look in ~/.claude/settings.json for "jacked index"
472
+
473
+ WINDOWS EXTRA CHECK (Git Bash doesn't inherit Windows System Environment):
474
+ - If env vars NOT visible in bash, check Windows:
475
+ powershell.exe -Command "[System.Environment]::GetEnvironmentVariable('QDRANT_CLAUDE_SESSIONS_ENDPOINT', 'User')"
476
+
477
+ SETUP PHASE (only do steps that are missing):
478
+ 1. If no pipx: pip install pipx && pipx ensurepath
479
+ 2. If jacked not installed: pipx install claude-jacked && jacked install
480
+ 3. If no Qdrant credentials: walk me through cloud.qdrant.io setup
481
+ 4. If no indexed sessions: jacked backfill
482
+
483
+ VERIFY: jacked status && jacked configure --show
484
+ ```
485
+
486
+ </details>
487
+
488
+ <details>
489
+ <summary><strong>Windows Troubleshooting</strong></summary>
490
+
491
+ Claude Code uses Git Bash on Windows, which can cause path issues.
492
+
493
+ **Where jacked is installed:**
494
+ ```
495
+ C:\Users\<username>\pipx\venvs\claude-jacked\Scripts\jacked.exe
496
+ ```
497
+
498
+ **If "jacked" isn't found:**
499
+ ```bash
500
+ # Find it
501
+ where jacked
502
+
503
+ # Or add to PATH
504
+ pipx ensurepath
505
+ ```
506
+
507
+ **If paths are getting mangled:**
508
+ Use forward slashes in Git Bash:
509
+ ```bash
510
+ /c/Users/jack/pipx/venvs/claude-jacked/Scripts/jacked.exe status
511
+ ```
512
+
513
+ </details>
514
+
515
+ ---
516
+
517
+ ## License
518
+
519
+ MIT
520
+
521
+ ## Credits
522
+
523
+ Built for [Claude Code](https://claude.ai/code) by Anthropic. Uses [Qdrant](https://qdrant.tech/) for search.
@@ -0,0 +1,33 @@
1
+ jacked/__init__.py,sha256=aVi7IpwXTJWSR8wBe4GHbAB4QlWyWvCobMQZ165Ytk8,609
2
+ jacked/cli.py,sha256=1N-2jz6k8clXSR0Fpn-8sI-Cxd7JUQGdFp-GchcXq5s,48037
3
+ jacked/client.py,sha256=7N4GdjcG8OXfmjUfprlUOJTkyrPyqF1OBstAsplNSa8,18151
4
+ jacked/config.py,sha256=DeC1no5rFsvlb6JaU2PzLyyhI4DaJrxrsfqVugWuC4Q,8606
5
+ jacked/index_write_tracker.py,sha256=E1zVqyZTQdHenp_vXL-gWPvLBo18Ar703_0MI9Cst8U,8679
6
+ jacked/indexer.py,sha256=Ox4W53X9pYleX32HllrsY3dFydrkRN5enMn3fYKkRms,17998
7
+ jacked/retriever.py,sha256=Lehq8zpQJzY9f7DmM9DfqUulZoVBHgpvWuasUgouxxw,19454
8
+ jacked/searcher.py,sha256=X6fIhVtIybUNpw69EUPY9-rsIdeBWZSmaCEC8EEXdbw,12994
9
+ jacked/transcript.py,sha256=QXm1xJd15n_-tvrXpNpsY-968Y68yKXeHjN0EgLKg6s,24421
10
+ jacked/data/agents/code-simplicity-reviewer.md,sha256=K_dqHP-h30fMeSGnUnq0hG4RJXDNnsKHDhchsuQ5YfA,5550
11
+ jacked/data/agents/defensive-error-handler.md,sha256=bE4oZSz_pFHE-LtzEqLL1TB8NH-YjY0cAveXQLgbjDM,5558
12
+ jacked/data/agents/double-check-reviewer.md,sha256=mrtcg-D-1R2qMzzIp64NzHW6dqbDf30eNinRS_aTCFI,9772
13
+ jacked/data/agents/git-pr-workflow-manager.md,sha256=owsusEBk1-ms4yvzzlyv32EKvkrp5oVQNHFw8GopHTE,8145
14
+ jacked/data/agents/issue-pr-coordinator.md,sha256=I9qUM6xQuNUfvNR4vDV1BYFczx3VZvZv7clKldUT8pc,7354
15
+ jacked/data/agents/pr-workflow-checker.md,sha256=IwuTCI7L7Z_DfScn-1e0UvrmMWhX6yLTBMiLBZyUPtE,6751
16
+ jacked/data/agents/readme-maintainer.md,sha256=z2CVCf9JR1qg3X6tPm69EmBbCGvIDCSJcVk9t-OtiF4,7464
17
+ jacked/data/agents/test-coverage-engineer.md,sha256=56LaFTyOocwclgNF6LBsPKZJSNoDLIfV8FzYrKao7wo,7555
18
+ jacked/data/agents/test-coverage-improver.md,sha256=q7IJtXX0rWwgcMqskSYqqXew4sEobH-Y4u8G3SpPr-Q,6607
19
+ jacked/data/agents/wiki-documentation-architect.md,sha256=x9qIAeNEH--4-d2hbhnhIFxpZ1lCg-wji9T29agmEoM,15812
20
+ jacked/data/commands/audit-rules.md,sha256=9gZMtqMhAYqbdlIvg2RWrBFCaFXvfYf1obQC-dV7tu4,3967
21
+ jacked/data/commands/dc.md,sha256=SG__jWSyb13Jgxb9A8yBdMfC3T3hHWiGyDP0v_1di0o,7622
22
+ jacked/data/commands/learn.md,sha256=FoD-qKsQSpEayFNP997dyUfV4UJgs8LiojYIWnzOSvA,3992
23
+ jacked/data/commands/pr.md,sha256=1orTbDnL4ky2bk5VXm5j66hGybTrNWVTyAPxx_uMggU,193
24
+ jacked/data/commands/redo.md,sha256=4NnCKKi10ybEOHdFObN1aVNaFGOt63eoluwDJUzUFxg,4242
25
+ jacked/data/commands/techdebt.md,sha256=jSdfMN1Kvz6vmsnWw9sCMFpKA8r87e9nDHrE-qsMwG8,3861
26
+ jacked/data/prompts/security_gatekeeper.txt,sha256=4PN1wyWPVpo7hvfAYfRcoh2dJNSgkP7mdVlG3u0y56Y,4049
27
+ jacked/data/rules/jacked_behaviors.md,sha256=x1qzdj3DLmkhv5TVAdNyIpAdjBGz7IUdXSrko94LOOw,1449
28
+ jacked/data/skills/jacked/SKILL.md,sha256=IEMp-PfWlu5rmS1R5HHblUX1CGwzno2gtO4yQ2cMAg4,5488
29
+ claude_jacked-0.2.9.dist-info/METADATA,sha256=no8uRxGSchoV3iGalGjj3YA4MczQB8Z0BvLyV_n4pFw,16597
30
+ claude_jacked-0.2.9.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
31
+ claude_jacked-0.2.9.dist-info/entry_points.txt,sha256=52JDhetd7OsE9iJryGrQIL3PWhum_QCeLuTeQ9-CTqQ,43
32
+ claude_jacked-0.2.9.dist-info/licenses/LICENSE,sha256=m8NmsH7P5G4VH3VyHWPQUTl2weuNTh1-eaH0RbUcn3k,1066
33
+ claude_jacked-0.2.9.dist-info/RECORD,,