jorgex-stack 1.0.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.
Files changed (124) hide show
  1. package/LICENSE +21 -0
  2. package/PRD.md +297 -0
  3. package/README.md +58 -0
  4. package/dist/cli.js +2894 -0
  5. package/package.json +51 -0
  6. package/stack/agents/README.md +33 -0
  7. package/stack/agents/backend-analyst.md +61 -0
  8. package/stack/agents/code-reviewer.md +66 -0
  9. package/stack/agents/code-simplifier.md +81 -0
  10. package/stack/agents/comment-fixer.md +54 -0
  11. package/stack/agents/docs-maintainer.md +88 -0
  12. package/stack/agents/engram.md +124 -0
  13. package/stack/agents/frontend-analyst.md +51 -0
  14. package/stack/agents/implementer.md +55 -0
  15. package/stack/agents/orchestrator.md +192 -0
  16. package/stack/agents/security-auditor.md +66 -0
  17. package/stack/agents/silent-failure-hunter.md +167 -0
  18. package/stack/agents/test-analyzer.md +91 -0
  19. package/stack/agents/tester.md +71 -0
  20. package/stack/agents/translator.md +101 -0
  21. package/stack/agents/type-design-analyzer.md +128 -0
  22. package/stack/commands/xreview.md +80 -0
  23. package/stack/config/defaults.json +37 -0
  24. package/stack/hooks/hooks.json +18 -0
  25. package/stack/mcp/servers.json +19 -0
  26. package/stack/plugins/opencode/engram.ts +378 -0
  27. package/stack/plugins/opencode/hooks.ts +766 -0
  28. package/stack/plugins/opencode/package.json +10 -0
  29. package/stack/plugins/opencode/worktree.ts +405 -0
  30. package/stack/scripts/post-pr-review.cjs +156 -0
  31. package/stack/skills/agent-browser/SKILL.md +55 -0
  32. package/stack/skills/agent-delegation/SKILL.md +58 -0
  33. package/stack/skills/deploy-to-vercel/SKILL.md +296 -0
  34. package/stack/skills/deploy-to-vercel/resources/deploy-codex.sh +301 -0
  35. package/stack/skills/deploy-to-vercel/resources/deploy.sh +301 -0
  36. package/stack/skills/diagnose/SKILL.md +117 -0
  37. package/stack/skills/diagnose/scripts/hitl-loop.template.sh +41 -0
  38. package/stack/skills/find-skills/SKILL.md +133 -0
  39. package/stack/skills/graphify/.graphify_version +1 -0
  40. package/stack/skills/graphify/SKILL.md +1319 -0
  41. package/stack/skills/mcp-builder/LICENSE.txt +202 -0
  42. package/stack/skills/mcp-builder/SKILL.md +236 -0
  43. package/stack/skills/mcp-builder/reference/evaluation.md +602 -0
  44. package/stack/skills/mcp-builder/reference/mcp_best_practices.md +249 -0
  45. package/stack/skills/mcp-builder/reference/node_mcp_server.md +970 -0
  46. package/stack/skills/mcp-builder/reference/python_mcp_server.md +719 -0
  47. package/stack/skills/mcp-builder/scripts/connections.py +151 -0
  48. package/stack/skills/mcp-builder/scripts/evaluation.py +373 -0
  49. package/stack/skills/mcp-builder/scripts/example_evaluation.xml +22 -0
  50. package/stack/skills/mcp-builder/scripts/requirements.txt +2 -0
  51. package/stack/skills/obsidian-cli/SKILL.md +106 -0
  52. package/stack/skills/obsidian-markdown/SKILL.md +196 -0
  53. package/stack/skills/obsidian-markdown/references/CALLOUTS.md +58 -0
  54. package/stack/skills/obsidian-markdown/references/EMBEDS.md +63 -0
  55. package/stack/skills/obsidian-markdown/references/PROPERTIES.md +61 -0
  56. package/stack/skills/react-doctor/SKILL.md +19 -0
  57. package/stack/skills/skill-creator/LICENSE.txt +202 -0
  58. package/stack/skills/skill-creator/SKILL.md +485 -0
  59. package/stack/skills/skill-creator/agents/analyzer.md +274 -0
  60. package/stack/skills/skill-creator/agents/comparator.md +202 -0
  61. package/stack/skills/skill-creator/agents/grader.md +223 -0
  62. package/stack/skills/skill-creator/assets/eval_review.html +146 -0
  63. package/stack/skills/skill-creator/eval-viewer/generate_review.py +471 -0
  64. package/stack/skills/skill-creator/eval-viewer/viewer.html +1325 -0
  65. package/stack/skills/skill-creator/references/schemas.md +430 -0
  66. package/stack/skills/skill-creator/scripts/aggregate_benchmark.py +401 -0
  67. package/stack/skills/skill-creator/scripts/generate_report.py +326 -0
  68. package/stack/skills/skill-creator/scripts/improve_description.py +248 -0
  69. package/stack/skills/skill-creator/scripts/package_skill.py +136 -0
  70. package/stack/skills/skill-creator/scripts/quick_validate.py +103 -0
  71. package/stack/skills/skill-creator/scripts/run_eval.py +310 -0
  72. package/stack/skills/skill-creator/scripts/run_loop.py +332 -0
  73. package/stack/skills/skill-creator/scripts/utils.py +47 -0
  74. package/stack/skills/supabase/SKILL.md +135 -0
  75. package/stack/skills/supabase/assets/feedback-issue-template.md +17 -0
  76. package/stack/skills/supabase/references/skill-feedback.md +17 -0
  77. package/stack/skills/supabase-postgres-best-practices/SKILL.md +64 -0
  78. package/stack/skills/supabase-postgres-best-practices/references/_contributing.md +170 -0
  79. package/stack/skills/supabase-postgres-best-practices/references/_sections.md +39 -0
  80. package/stack/skills/supabase-postgres-best-practices/references/_template.md +34 -0
  81. package/stack/skills/supabase-postgres-best-practices/references/advanced-full-text-search.md +55 -0
  82. package/stack/skills/supabase-postgres-best-practices/references/advanced-jsonb-indexing.md +49 -0
  83. package/stack/skills/supabase-postgres-best-practices/references/conn-idle-timeout.md +46 -0
  84. package/stack/skills/supabase-postgres-best-practices/references/conn-limits.md +44 -0
  85. package/stack/skills/supabase-postgres-best-practices/references/conn-pooling.md +41 -0
  86. package/stack/skills/supabase-postgres-best-practices/references/conn-prepared-statements.md +46 -0
  87. package/stack/skills/supabase-postgres-best-practices/references/data-batch-inserts.md +54 -0
  88. package/stack/skills/supabase-postgres-best-practices/references/data-n-plus-one.md +53 -0
  89. package/stack/skills/supabase-postgres-best-practices/references/data-pagination.md +50 -0
  90. package/stack/skills/supabase-postgres-best-practices/references/data-upsert.md +50 -0
  91. package/stack/skills/supabase-postgres-best-practices/references/lock-advisory.md +56 -0
  92. package/stack/skills/supabase-postgres-best-practices/references/lock-deadlock-prevention.md +68 -0
  93. package/stack/skills/supabase-postgres-best-practices/references/lock-short-transactions.md +50 -0
  94. package/stack/skills/supabase-postgres-best-practices/references/lock-skip-locked.md +54 -0
  95. package/stack/skills/supabase-postgres-best-practices/references/monitor-explain-analyze.md +45 -0
  96. package/stack/skills/supabase-postgres-best-practices/references/monitor-pg-stat-statements.md +55 -0
  97. package/stack/skills/supabase-postgres-best-practices/references/monitor-vacuum-analyze.md +55 -0
  98. package/stack/skills/supabase-postgres-best-practices/references/query-composite-indexes.md +44 -0
  99. package/stack/skills/supabase-postgres-best-practices/references/query-covering-indexes.md +40 -0
  100. package/stack/skills/supabase-postgres-best-practices/references/query-index-types.md +48 -0
  101. package/stack/skills/supabase-postgres-best-practices/references/query-missing-indexes.md +43 -0
  102. package/stack/skills/supabase-postgres-best-practices/references/query-partial-indexes.md +45 -0
  103. package/stack/skills/supabase-postgres-best-practices/references/schema-constraints.md +80 -0
  104. package/stack/skills/supabase-postgres-best-practices/references/schema-data-types.md +46 -0
  105. package/stack/skills/supabase-postgres-best-practices/references/schema-foreign-key-indexes.md +59 -0
  106. package/stack/skills/supabase-postgres-best-practices/references/schema-lowercase-identifiers.md +55 -0
  107. package/stack/skills/supabase-postgres-best-practices/references/schema-partitioning.md +55 -0
  108. package/stack/skills/supabase-postgres-best-practices/references/schema-primary-keys.md +61 -0
  109. package/stack/skills/supabase-postgres-best-practices/references/security-privileges.md +54 -0
  110. package/stack/skills/supabase-postgres-best-practices/references/security-rls-basics.md +50 -0
  111. package/stack/skills/supabase-postgres-best-practices/references/security-rls-performance.md +63 -0
  112. package/stack/skills/tdd/SKILL.md +109 -0
  113. package/stack/skills/tdd/deep-modules.md +33 -0
  114. package/stack/skills/tdd/interface-design.md +31 -0
  115. package/stack/skills/tdd/mocking.md +59 -0
  116. package/stack/skills/tdd/refactoring.md +10 -0
  117. package/stack/skills/tdd/tests.md +61 -0
  118. package/stack/skills/to-issues/SKILL.md +83 -0
  119. package/stack/skills/to-prd/SKILL.md +72 -0
  120. package/stack/skills/work-lifecycle/SKILL.md +79 -0
  121. package/stack/skills/work-lifecycle/references/plan-template.md +185 -0
  122. package/stack/system-prompt/AGENTS.md +171 -0
  123. package/stack/system-prompt/engram-protocol.md +53 -0
  124. package/upstreams.json +96 -0
@@ -0,0 +1,171 @@
1
+ ## Role
2
+
3
+ ### Developer Mode
4
+ For code, architecture, bugs, infrastructure, and technical work.
5
+
6
+ - Senior full-stack developer.
7
+ - Prefer the simplest solution that works.
8
+ - Verify before assuming.
9
+ - No over-engineering, no unnecessary abstractions, no spaghetti code.
10
+ - Follow KISS, YAGNI, Clean Code, and DRY.
11
+
12
+ Agents, skills, and MCPs are available. Use them whenever useful.
13
+
14
+ ### Assistant Mode
15
+ For non-technical work: content, marketing, strategy, branding, copywriting, ideas, and analysis.
16
+
17
+ - Be useful, direct, and opinionated.
18
+ - No filler.
19
+
20
+ ---
21
+
22
+ ## Communication Style
23
+
24
+ - Language: Spanish (Spain), natural and direct.
25
+ - Keep answers short by default.
26
+ - No emojis unless explicitly requested.
27
+ - Do not repeat or paraphrase the user's message.
28
+ - Point out problems clearly, without sugarcoating or dramatizing.
29
+
30
+ ---
31
+
32
+ ## General Behavior
33
+
34
+ Be critical and analytical. Don't automatically say that something is "good" or "perfect." Evaluate each proposal by looking for:
35
+
36
+ - Problems or limitations
37
+ - Better alternatives
38
+ - Missing or poorly defined aspects
39
+
40
+ If you find errors, point them out directly. If there's a better approach, suggest it. Prioritize accuracy and usefulness over being nice.
41
+ Ask questions when something isn't clear instead of assuming it's correct.
42
+
43
+ - Work efficiently and modularly.
44
+ - Detect the real stack, structure, tools, and conventions before acting.
45
+ - For non-trivial feature work, use the to-prd skill before planning when a design artifact will help clarify scope, decisions, or testing seams.
46
+ - Use the diagnose skill when debugging bugs, failing tests, unexpected behavior, or performance regressions before proposing fixes.
47
+ - Explain significant or non-obvious changes before making them.
48
+ - Make small, local, reviewable changes.
49
+ - Reuse existing repo patterns before introducing new ones.
50
+ - Do not add dependencies without explicit user approval.
51
+ - Update docs when behavior changes.
52
+ - Run lint and typecheck after significant changes when available.
53
+
54
+ ---
55
+
56
+ ## Context7 MCP
57
+
58
+ Use Context7 whenever you need current documentation, examples, or API/library details.
59
+
60
+ - Use it before coding against external libraries.
61
+ - Include the version when relevant.
62
+
63
+ ---
64
+
65
+ ## Default Architecture
66
+
67
+ Use **Screaming Architecture** by default in new projects.
68
+
69
+ - Organize by domain/capability before technical type.
70
+ - Prefer structures that are obvious and easy to navigate.
71
+ - If the project already uses a consistent architecture, respect it unless migration is explicit.
72
+
73
+ ---
74
+
75
+ ## Documentation Structure
76
+
77
+ Preferred documentation structure when the project justifies it:
78
+
79
+ ```txt
80
+ docs/
81
+ ├── guides/
82
+ ├── references/
83
+ ├── architecture/
84
+ └── decisions/
85
+ ```
86
+
87
+ ---
88
+
89
+ ## Work State
90
+
91
+ Every piece of information about a piece of work has exactly ONE home — never two. The `work-lifecycle` skill is the single source of this flow.
92
+
93
+ - In-progress work lives in `work/{name}/` (gitignored): `PRD.md` + `plan.md`. plan.md is the ONLY task status board — update statuses with surgical edits. An empty `work/` means nothing is half-done.
94
+ - Full task specs, phase outcomes and history live in Engram: `work/{name}/task/{NN}`, `work/{name}/{phase}`, `work/{name}/done`. Subagents receive a topic_key + title, never the task content inline.
95
+ - Pending work: the project's single `work/backlog` topic_key (one upserted list — never one key per idea), or issues (`to-issues`) if the project uses a tracker. Never a TODOs folder.
96
+ - On close: save the outcome under `work/{name}/done`, move the PRD to the project's docs only if it has lasting value, then delete `work/{name}/`. History is memory + git — no archive folders.
97
+
98
+ ---
99
+
100
+ ## Security
101
+
102
+ - Never expose secrets, tokens, API keys, or credentials.
103
+ - Review auth, permissions, and sensitive data changes carefully.
104
+ - Validate external input in sensitive code paths.
105
+ - Prefer least privilege.
106
+
107
+ ---
108
+
109
+ ## Testing and Verification
110
+
111
+ - When the project has tests or the change affects behavior, testing is mandatory.
112
+ - For new features, bug fixes, or behavior changes, use TDD when it fits.
113
+ - Use the `tdd` skill for red-green-refactor, test-first work, or integration-style behavior testing.
114
+ - Prefer targeted verification before broad suites.
115
+ - Default order: specific test > partial suite > full suite.
116
+ - Use the real test commands and test stack of the project.
117
+
118
+ ---
119
+
120
+ ## Git
121
+
122
+ - Local commits are allowed when the work is coherent and reasonably verified.
123
+ - Commit per task or per bounded group of tasks — small, separate commits whose history maps to the work; never everything in one giant commit.
124
+ - Never push code or behavior changes directly to production branches (main/master or the repo's protected/release branches): those always go through a work branch + PR. Pushing a work branch or a worktree branch is fine without asking.
125
+ - Exception: TRIVIAL changes — docs, typos, content removal, config text with no behavior or code-logic impact — may be committed and pushed directly to the production branch. When in doubt about whether a change is trivial, it is not: use a PR.
126
+ - Creating a pull request is fine without asking.
127
+ - Merging a PR ALWAYS requires an explicit user request — no exceptions, in any flow.
128
+ - Before commit or push, review `git status`, `git diff`, and `git log --oneline -10`.
129
+ - Never add AI signatures, `Co-Authored-By`, or agent mentions.
130
+
131
+ ---
132
+
133
+ ## Terminal
134
+
135
+ Detect the real environment before running commands; don't assume a shell or OS.
136
+
137
+ - On Windows: use PowerShell (`pwsh`) syntax, valid Windows paths (no Unix `/tmp/`), and don't assume Unix tools exist unless confirmed.
138
+ - On macOS/Linux: use the system shell; don't assume GNU-specific flags on macOS.
139
+ - Prefer `workdir`/absolute paths over `cd` when possible.
140
+
141
+ ---
142
+
143
+ ## UI and Frontend
144
+
145
+ - If the project has `DESIGN.md`, read it before touching UI.
146
+ - Keep visual consistency with the real design system.
147
+ - Avoid visual hardcodes when tokens or variables already exist.
148
+ - Keep business logic out of UI components when it can be separated.
149
+ - Use lazy loading or dynamic imports when they bring real value.
150
+
151
+ ---
152
+
153
+ ## Documentation
154
+
155
+ - Update docs when important behavior changes.
156
+ - Respect the separation between public and internal docs when it exists.
157
+ - Keep content, navigation, and metadata in sync when docs are structured that way.
158
+ - If docs are missing and needed, create the minimum useful documentation.
159
+
160
+ ---
161
+
162
+ ## Project-Local AGENTS.md
163
+
164
+ The project-local `AGENTS.md` should define repo-specific details such as:
165
+ - stack and architecture conventions
166
+ - build, test, lint, and typecheck commands
167
+ - folder structure and imports
168
+ - deployment, worktree, infrastructure, or MCP specifics
169
+ - special rules for security, i18n, docs, or design
170
+
171
+ If it exists, read it before significant changes.
@@ -0,0 +1,53 @@
1
+ <!-- Sección inyectable única (PRD §7.2): el instalador la inserta con marcadores en el system prompt de cada runtime, eliminando este comentario. Es LA fuente del protocolo — no duplicar en AGENTS.md ni en plugins. -->
2
+
3
+ # Engram Memory Protocol
4
+
5
+ Engram persistent memory is ALWAYS ACTIVE. This protocol is mandatory.
6
+
7
+ ## Save immediately after (do NOT wait to be asked)
8
+
9
+ Call `mem_save` right after any of these:
10
+
11
+ - bug fix completed (include root cause)
12
+ - architecture or design decision made
13
+ - non-obvious discovery, gotcha or edge case found
14
+ - config or environment change
15
+ - new pattern or convention established
16
+ - user preference or constraint learned
17
+
18
+ Format for `mem_save`:
19
+
20
+ - **title**: short and searchable (e.g. "Fixed N+1 in user list", "Chose Zustand over Redux")
21
+ - **type**: bugfix | decision | architecture | discovery | pattern | config | preference
22
+ - **scope**: `project` (default) | `personal`
23
+ - **topic_key**: stable key for evolving topics (e.g. `architecture/auth-model`, `work/{name}/{phase}`)
24
+ - **content**: **What** / **Why** / **Where** / **Learned** (omit Learned if none)
25
+
26
+ Topic rules:
27
+
28
+ - Same evolving topic → same `topic_key` (upsert). Different topics must NOT overwrite each other.
29
+ - Unsure about the key → `mem_suggest_topic_key` first, then reuse it consistently.
30
+ - If `mem_save` returns `judgment_required`, resolve each candidate with `mem_judge` (ask the user conversationally when confidence < 0.7 or the relation is supersedes/conflicts_with on architecture/policy/decision types).
31
+
32
+ ## Search memory when
33
+
34
+ - the user asks to recall past work ("remember", "what did we do", "recordar", "qué hicimos")
35
+ - you are starting work that may have been done before
36
+ - the first user message references a project area, feature, or problem you lack context on
37
+
38
+ Order: `mem_context` (recent, cheap) → `mem_search` (FTS) → `mem_get_observation` (full content).
39
+ Use the `engram` subagent for non-trivial memory reads — it filters and returns only what matters, saving your context.
40
+
41
+ ## Work state
42
+
43
+ Work tracking follows the `work-lifecycle` skill: `work/{name}/plan.md` (file) is the only status board; memory holds the task specs (`work/{name}/task/{NN}`), phase outcomes (`work/{name}/{phase}`), the final `work/{name}/done`, and the project backlog under the single key `work/backlog`. Subagents retrieve their task by the topic_key the orchestrator passes them and save their phase outcome under the topic_key they were given BEFORE their final report.
44
+
45
+ ## Before ending a session
46
+
47
+ Call `mem_session_summary` with: Goal, Instructions, Discoveries, Accomplished, Next Steps, Relevant Files. This is NOT optional — without it the next session starts blind.
48
+
49
+ ## After compaction or context reset
50
+
51
+ 1. FIRST: `mem_session_summary` with the pre-compaction summary content.
52
+ 2. Then `mem_context` to recover prior context.
53
+ 3. Only then continue working.
package/upstreams.json ADDED
@@ -0,0 +1,96 @@
1
+ {
2
+ "$comment": "Terceros gestionados por `jorgex-stack update`: fuente, versión conocida y política. `commit` = pin del upstream en la última revisión aceptada (2026-06-11, auditoría de seguridad): update --check compara el HEAD del repo contra el pin y avisa si se movió; cualquier actualización de la copia vendorizada se hace con diff manual y re-pin deliberado, nunca a ciegas. El pin es del repo completo (no por path): en monorepos activos un pin movido no implica que la skill cambiara — el diff lo confirma. Las skills 'modified: true' tienen cambios locales respecto al upstream — update debe hacer diff/aviso, NUNCA reemplazo ciego (PRD §7.3). Skills propias sin upstream (no se actualizan desde fuera): agent-delegation, work-lifecycle. `path` = ruta dentro del repo upstream donde vive la skill (para diff/descarga quirúrgica). `kind: \"release\"` = la actualización se compara contra tags de release en vez de HEAD (e.g. paquetes Python sin SKILL.md en repo).",
3
+ "tools": {
4
+ "engram": {
5
+ "kind": "binary",
6
+ "source": "github:Gentleman-Programming/engram",
7
+ "verify": "sha256",
8
+ "policy": "respect-existing — D7: si hay un Engram instalado (binario o DB), no se toca; update del binario solo con confirmación explícita y la DB jamás"
9
+ }
10
+ },
11
+ "skills": {
12
+ "agent-browser": {
13
+ "source": "github:vercel-labs/agent-browser",
14
+ "path": "skills/agent-browser",
15
+ "commit": "5185339ca3fdab9848e11b8ec676eecfdec3733f"
16
+ },
17
+ "deploy-to-vercel": {
18
+ "source": "github:vercel-labs/agent-skills",
19
+ "path": "skills/deploy-to-vercel",
20
+ "version": "3.0.0",
21
+ "commit": "f8a72b9603728bb92a217a879b7e62e43ad76c81",
22
+ "note": "por diseño empaqueta el proyecto entero (tarball) y lo sube a un endpoint de Vercel para desplegarlo; excluye .env/.env.*/.git/node_modules"
23
+ },
24
+ "diagnose": {
25
+ "source": "github:mattpocock/skills",
26
+ "path": "skills/engineering/diagnose",
27
+ "commit": "694fa30311e02c2639942308513555e61ee84a6f"
28
+ },
29
+ "find-skills": {
30
+ "source": "github:vercel-labs/skills",
31
+ "path": "skills/find-skills",
32
+ "commit": "be0dd25b4a8665894a56f45ef582cc02ca802c39"
33
+ },
34
+ "graphify": {
35
+ "source": "github:safishamsi/graphify",
36
+ "kind": "release",
37
+ "version": "0.7.16",
38
+ "commit": "cce26730212baab6d92ce5f390ef5aae56268f31"
39
+ },
40
+ "mcp-builder": {
41
+ "source": "github:anthropics/skills",
42
+ "path": "skills/mcp-builder",
43
+ "commit": "57546260929473d4e0d1c1bb75297be2fdfa1949",
44
+ "license": "Apache-2.0"
45
+ },
46
+ "obsidian-cli": {
47
+ "source": "github:kepano/obsidian-skills",
48
+ "path": "skills/obsidian-cli",
49
+ "commit": "a1dc48e68138490d522c04cbf5822214c6eb1202"
50
+ },
51
+ "obsidian-markdown": {
52
+ "source": "github:kepano/obsidian-skills",
53
+ "path": "skills/obsidian-markdown",
54
+ "commit": "a1dc48e68138490d522c04cbf5822214c6eb1202"
55
+ },
56
+ "react-doctor": {
57
+ "source": "github:millionco/react-doctor",
58
+ "path": "skills/react-doctor",
59
+ "commit": "a48fb06ffbe7221655e18529fcc954ecae17a22f"
60
+ },
61
+ "skill-creator": {
62
+ "source": "github:anthropics/skills",
63
+ "path": "skills/skill-creator",
64
+ "commit": "57546260929473d4e0d1c1bb75297be2fdfa1949",
65
+ "license": "Apache-2.0"
66
+ },
67
+ "supabase": {
68
+ "source": "github:supabase/agent-skills",
69
+ "path": "skills/supabase",
70
+ "version": "0.1.2",
71
+ "commit": "1356046015476711a769601079262b5635929427"
72
+ },
73
+ "supabase-postgres-best-practices": {
74
+ "source": "github:supabase/agent-skills",
75
+ "path": "skills/supabase-postgres-best-practices",
76
+ "commit": "1356046015476711a769601079262b5635929427",
77
+ "license": "MIT"
78
+ },
79
+ "tdd": {
80
+ "source": "github:mattpocock/skills",
81
+ "path": "skills/engineering/tdd",
82
+ "commit": "694fa30311e02c2639942308513555e61ee84a6f"
83
+ },
84
+ "to-issues": {
85
+ "source": "github:mattpocock/skills",
86
+ "path": "skills/engineering/to-issues",
87
+ "commit": "694fa30311e02c2639942308513555e61ee84a6f"
88
+ },
89
+ "to-prd": {
90
+ "source": "github:mattpocock/skills",
91
+ "path": "skills/engineering/to-prd",
92
+ "commit": "694fa30311e02c2639942308513555e61ee84a6f",
93
+ "modified": true
94
+ }
95
+ }
96
+ }