jhste-skills 0.1.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 +21 -0
- package/README.ja.md +254 -0
- package/README.ko.md +254 -0
- package/README.md +254 -0
- package/README.zh.md +254 -0
- package/adapters/claude/README.md +7 -0
- package/adapters/codex/README.md +25 -0
- package/adapters/generic/README.md +7 -0
- package/cli/baseline.mjs +32 -0
- package/cli/connect.mjs +84 -0
- package/cli/deep-scan/analyze.mjs +167 -0
- package/cli/deep-scan/collect.mjs +133 -0
- package/cli/deep-scan/report.mjs +197 -0
- package/cli/deep-scan.mjs +56 -0
- package/cli/guard/baseline.mjs +64 -0
- package/cli/guard/config.mjs +48 -0
- package/cli/guard/profile-commands.mjs +87 -0
- package/cli/guard/registry.mjs +47 -0
- package/cli/guard/reporting.mjs +165 -0
- package/cli/guard/scanners/code-health.mjs +213 -0
- package/cli/guard/scanners/data-boundary-locality.mjs +125 -0
- package/cli/guard/scanners/data-boundary.mjs +237 -0
- package/cli/guard/scanners/external-input.mjs +74 -0
- package/cli/guard/scanners/index.mjs +136 -0
- package/cli/guard/scanners/single-responsibility.mjs +205 -0
- package/cli/guard/scanners/ui-runtime.mjs +140 -0
- package/cli/guard/scanners/utils.mjs +167 -0
- package/cli/guard/scope.mjs +181 -0
- package/cli/guard.mjs +125 -0
- package/cli/hook-utils.mjs +127 -0
- package/cli/hooks.mjs +127 -0
- package/cli/index.mjs +35 -0
- package/cli/install-actions/apply-plan.mjs +39 -0
- package/cli/install-actions/bridge-writer.mjs +52 -0
- package/cli/install-actions/output.mjs +45 -0
- package/cli/install-actions/preflight.mjs +58 -0
- package/cli/install-actions/profile-writer.mjs +21 -0
- package/cli/install-actions/skills.mjs +148 -0
- package/cli/install-actions.mjs +4 -0
- package/cli/install-flow/options.mjs +234 -0
- package/cli/install-flow/output.mjs +106 -0
- package/cli/install-flow/plan-helpers.mjs +29 -0
- package/cli/install-flow/plan.mjs +200 -0
- package/cli/install-flow/prompts.mjs +210 -0
- package/cli/install-flow.mjs +16 -0
- package/cli/install.mjs +77 -0
- package/cli/json-file.mjs +39 -0
- package/cli/profile/loader.mjs +13 -0
- package/cli/profile/parser.mjs +226 -0
- package/cli/profile/schema.mjs +81 -0
- package/cli/profile/settings.mjs +45 -0
- package/cli/profile/validator.mjs +86 -0
- package/cli/profile.mjs +5 -0
- package/cli/shared/args.mjs +32 -0
- package/cli/shared/files.mjs +70 -0
- package/cli/shared/git.mjs +28 -0
- package/cli/shared/paths.mjs +27 -0
- package/cli/shared/prompt.mjs +32 -0
- package/cli/shared/templates.mjs +71 -0
- package/cli/shared/time.mjs +3 -0
- package/cli/shared.mjs +7 -0
- package/cli/sync-core.mjs +213 -0
- package/cli/sync.mjs +7 -0
- package/cli/tune.mjs +101 -0
- package/cli/uninstall.mjs +288 -0
- package/cli/update.mjs +7 -0
- package/docs/ACCEPTANCE_CHECK.md +54 -0
- package/docs/CLI.md +212 -0
- package/docs/CONFLICT_RESOLUTION.md +58 -0
- package/docs/PUBLIC_SAFETY.md +26 -0
- package/docs/RULES.md +94 -0
- package/docs/VENDORING.md +23 -0
- package/examples/profile.yaml +45 -0
- package/package.json +51 -0
- package/packs/api.yaml +13 -0
- package/packs/core.yaml +19 -0
- package/packs/crawler.yaml +8 -0
- package/packs/database.yaml +8 -0
- package/packs/web.yaml +10 -0
- package/rules/core/api_contract_compatibility.yaml +25 -0
- package/rules/core/authz_data_isolation.yaml +27 -0
- package/rules/core/build_runtime_env_safety.yaml +26 -0
- package/rules/core/external_input_validation.yaml +27 -0
- package/rules/core/file_size_advisory.yaml +28 -0
- package/rules/core/no_secret_logging.yaml +24 -0
- package/rules/core/no_silent_failure.yaml +30 -0
- package/rules/core/null_state_safety.yaml +25 -0
- package/rules/core/performance_duplicate_fetch.yaml +25 -0
- package/rules/core/public_safe_error.yaml +24 -0
- package/rules/core/responsibility_budget.yaml +44 -0
- package/rules/core/side_effect_boundary.yaml +24 -0
- package/rules/core/single_responsibility_advisory.yaml +35 -0
- package/rules/core/workflow_security.yaml +25 -0
- package/rules/core/write_safety_idempotency.yaml +25 -0
- package/rules/crawler/crawler_producer_boundary.yaml +24 -0
- package/rules/database/db_row_validation.yaml +24 -0
- package/rules/database/sql_parameter_binding.yaml +24 -0
- package/rules/nextjs/thin_api_route.yaml +24 -0
- package/rules/python/broad_exception_advisory.yaml +24 -0
- package/rules/react/component_responsibility.yaml +24 -0
- package/rules/typescript/type_escape_advisory.yaml +24 -0
- package/scripts/docs-check-data.mjs +71 -0
- package/scripts/docs-check.mjs +261 -0
- package/scripts/guard-fixtures/helpers.mjs +58 -0
- package/scripts/guard-fixtures-test.mjs +273 -0
- package/scripts/profile-fixtures-test.mjs +83 -0
- package/scripts/public-safety-check.mjs +88 -0
- package/scripts/public-safety-fixtures-test.mjs +60 -0
- package/scripts/release-gates-test.mjs +52 -0
- package/scripts/single-responsibility-fixtures-test.mjs +86 -0
- package/scripts/smoke/connect-scenarios.mjs +47 -0
- package/scripts/smoke/fixture.mjs +49 -0
- package/scripts/smoke/guard-and-hook-scenarios.mjs +211 -0
- package/scripts/smoke/helpers.mjs +51 -0
- package/scripts/smoke/install-scenarios.mjs +244 -0
- package/scripts/smoke/mode-scenarios.mjs +76 -0
- package/scripts/smoke-test.mjs +17 -0
- package/scripts/syntax-check.mjs +37 -0
- package/scripts/vendor-check.mjs +87 -0
- package/skills/codebase-design/DEEPENING.md +37 -0
- package/skills/codebase-design/DESIGN-IT-TWICE.md +44 -0
- package/skills/codebase-design/SKILL.md +122 -0
- package/skills/diagnose/SKILL.md +125 -0
- package/skills/diagnose/scripts/hitl-loop.template.sh +41 -0
- package/skills/diagnosing-bugs/SKILL.md +142 -0
- package/skills/diagnosing-bugs/scripts/hitl-loop.template.sh +41 -0
- package/skills/domain-modeling/ADR-FORMAT.md +47 -0
- package/skills/domain-modeling/CONTEXT-FORMAT.md +60 -0
- package/skills/domain-modeling/SKILL.md +82 -0
- package/skills/grill-me/SKILL.md +18 -0
- package/skills/grill-with-docs/ADR-FORMAT.md +47 -0
- package/skills/grill-with-docs/CONTEXT-FORMAT.md +60 -0
- package/skills/grill-with-docs/SKILL.md +96 -0
- package/skills/grilling/SKILL.md +18 -0
- package/skills/handoff/SKILL.md +23 -0
- package/skills/improve-codebase-architecture/DEEPENING.md +37 -0
- package/skills/improve-codebase-architecture/HTML-REPORT.md +123 -0
- package/skills/improve-codebase-architecture/INTERFACE-DESIGN.md +44 -0
- package/skills/improve-codebase-architecture/LANGUAGE.md +53 -0
- package/skills/improve-codebase-architecture/SKILL.md +93 -0
- package/skills/jhste-architecture-review/SKILL.md +28 -0
- package/skills/jhste-architecture-review/references/architecture-review.md +41 -0
- package/skills/jhste-code-quality/SKILL.md +33 -0
- package/skills/jhste-code-quality/references/code-quality.md +45 -0
- package/skills/jhste-crawler-automation/SKILL.md +23 -0
- package/skills/jhste-crawler-automation/references/crawler-automation.md +11 -0
- package/skills/jhste-db-api-boundary/SKILL.md +28 -0
- package/skills/jhste-db-api-boundary/references/db-api-boundary.md +21 -0
- package/skills/jhste-engineering-judgment/SKILL.md +107 -0
- package/skills/jhste-engineering-judgment/references/structure-templates.md +41 -0
- package/skills/jhste-red-team-review/SKILL.md +101 -0
- package/skills/jhste-red-team-review/references/red-team-review.md +83 -0
- package/skills/prototype/LOGIC.md +79 -0
- package/skills/prototype/SKILL.md +38 -0
- package/skills/prototype/UI.md +112 -0
- package/skills/setup/SKILL.md +21 -0
- package/skills/setup/references/conflict-policy.md +11 -0
- package/skills/setup/references/setup-flow.md +18 -0
- package/skills/to-issues/SKILL.md +91 -0
- package/skills/to-prd/SKILL.md +82 -0
- package/skills/triage/AGENT-BRIEF.md +168 -0
- package/skills/triage/OUT-OF-SCOPE.md +101 -0
- package/skills/triage/SKILL.md +111 -0
- package/skills/write-a-skill/SKILL.md +125 -0
- package/vendor/matt-pocock/LICENSE +21 -0
- package/vendor/matt-pocock/NOTICE.md +10 -0
- package/vendor/matt-pocock/allowlist.json +16 -0
- package/vendor/matt-pocock/source-lock.json +119 -0
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 Matt Pocock
|
|
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.
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
# Matt Pocock skills attribution
|
|
2
|
+
|
|
3
|
+
This repository vendors exactly the 14 skills listed in `allowlist.json` from [`mattpocock/skills`](https://github.com/mattpocock/skills).
|
|
4
|
+
|
|
5
|
+
- Source lock: `source-lock.json`
|
|
6
|
+
- Upstream license: `LICENSE`
|
|
7
|
+
- License: MIT
|
|
8
|
+
- Imported commit: `694fa30311e02c2639942308513555e61ee84a6f`
|
|
9
|
+
|
|
10
|
+
Do not add skills outside the allowlist without a separate review. Do not update vendored copies without refreshing the source lock and reviewing the diff.
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
[
|
|
2
|
+
"diagnose",
|
|
3
|
+
"grill-with-docs",
|
|
4
|
+
"triage",
|
|
5
|
+
"improve-codebase-architecture",
|
|
6
|
+
"to-issues",
|
|
7
|
+
"to-prd",
|
|
8
|
+
"prototype",
|
|
9
|
+
"grill-me",
|
|
10
|
+
"handoff",
|
|
11
|
+
"write-a-skill",
|
|
12
|
+
"codebase-design",
|
|
13
|
+
"diagnosing-bugs",
|
|
14
|
+
"domain-modeling",
|
|
15
|
+
"grilling"
|
|
16
|
+
]
|
|
@@ -0,0 +1,119 @@
|
|
|
1
|
+
{
|
|
2
|
+
"upstream": "https://github.com/mattpocock/skills",
|
|
3
|
+
"imported_at": "2026-06-18T10:53:47Z",
|
|
4
|
+
"license": "MIT",
|
|
5
|
+
"skills": [
|
|
6
|
+
{
|
|
7
|
+
"name": "diagnose",
|
|
8
|
+
"source": "https://github.com/mattpocock/skills/tree/main/skills/engineering/diagnose",
|
|
9
|
+
"commit": "694fa30311e02c2639942308513555e61ee84a6f",
|
|
10
|
+
"license": "MIT; see vendor/matt-pocock/LICENSE",
|
|
11
|
+
"vendored_path": "skills/diagnose",
|
|
12
|
+
"imported_at": "2026-06-17T10:11:18Z"
|
|
13
|
+
},
|
|
14
|
+
{
|
|
15
|
+
"name": "grill-with-docs",
|
|
16
|
+
"source": "https://github.com/mattpocock/skills/tree/main/skills/engineering/grill-with-docs",
|
|
17
|
+
"commit": "694fa30311e02c2639942308513555e61ee84a6f",
|
|
18
|
+
"license": "MIT; see vendor/matt-pocock/LICENSE",
|
|
19
|
+
"vendored_path": "skills/grill-with-docs",
|
|
20
|
+
"imported_at": "2026-06-17T10:11:18Z"
|
|
21
|
+
},
|
|
22
|
+
{
|
|
23
|
+
"name": "triage",
|
|
24
|
+
"source": "https://github.com/mattpocock/skills/tree/main/skills/engineering/triage",
|
|
25
|
+
"commit": "694fa30311e02c2639942308513555e61ee84a6f",
|
|
26
|
+
"license": "MIT; see vendor/matt-pocock/LICENSE",
|
|
27
|
+
"vendored_path": "skills/triage",
|
|
28
|
+
"imported_at": "2026-06-17T10:11:18Z"
|
|
29
|
+
},
|
|
30
|
+
{
|
|
31
|
+
"name": "improve-codebase-architecture",
|
|
32
|
+
"source": "https://github.com/mattpocock/skills/tree/main/skills/engineering/improve-codebase-architecture",
|
|
33
|
+
"commit": "694fa30311e02c2639942308513555e61ee84a6f",
|
|
34
|
+
"license": "MIT; see vendor/matt-pocock/LICENSE",
|
|
35
|
+
"vendored_path": "skills/improve-codebase-architecture",
|
|
36
|
+
"imported_at": "2026-06-17T10:11:18Z"
|
|
37
|
+
},
|
|
38
|
+
{
|
|
39
|
+
"name": "to-issues",
|
|
40
|
+
"source": "https://github.com/mattpocock/skills/tree/main/skills/engineering/to-issues",
|
|
41
|
+
"commit": "694fa30311e02c2639942308513555e61ee84a6f",
|
|
42
|
+
"license": "MIT; see vendor/matt-pocock/LICENSE",
|
|
43
|
+
"vendored_path": "skills/to-issues",
|
|
44
|
+
"imported_at": "2026-06-17T10:11:18Z"
|
|
45
|
+
},
|
|
46
|
+
{
|
|
47
|
+
"name": "to-prd",
|
|
48
|
+
"source": "https://github.com/mattpocock/skills/tree/main/skills/engineering/to-prd",
|
|
49
|
+
"commit": "694fa30311e02c2639942308513555e61ee84a6f",
|
|
50
|
+
"license": "MIT; see vendor/matt-pocock/LICENSE",
|
|
51
|
+
"vendored_path": "skills/to-prd",
|
|
52
|
+
"imported_at": "2026-06-17T10:11:18Z"
|
|
53
|
+
},
|
|
54
|
+
{
|
|
55
|
+
"name": "prototype",
|
|
56
|
+
"source": "https://github.com/mattpocock/skills/tree/main/skills/engineering/prototype",
|
|
57
|
+
"commit": "694fa30311e02c2639942308513555e61ee84a6f",
|
|
58
|
+
"license": "MIT; see vendor/matt-pocock/LICENSE",
|
|
59
|
+
"vendored_path": "skills/prototype",
|
|
60
|
+
"imported_at": "2026-06-17T10:11:18Z"
|
|
61
|
+
},
|
|
62
|
+
{
|
|
63
|
+
"name": "grill-me",
|
|
64
|
+
"source": "https://github.com/mattpocock/skills/tree/main/skills/productivity/grill-me",
|
|
65
|
+
"commit": "694fa30311e02c2639942308513555e61ee84a6f",
|
|
66
|
+
"license": "MIT; see vendor/matt-pocock/LICENSE",
|
|
67
|
+
"vendored_path": "skills/grill-me",
|
|
68
|
+
"imported_at": "2026-06-17T10:11:18Z"
|
|
69
|
+
},
|
|
70
|
+
{
|
|
71
|
+
"name": "handoff",
|
|
72
|
+
"source": "https://github.com/mattpocock/skills/tree/main/skills/productivity/handoff",
|
|
73
|
+
"commit": "694fa30311e02c2639942308513555e61ee84a6f",
|
|
74
|
+
"license": "MIT; see vendor/matt-pocock/LICENSE",
|
|
75
|
+
"vendored_path": "skills/handoff",
|
|
76
|
+
"imported_at": "2026-06-17T10:11:18Z"
|
|
77
|
+
},
|
|
78
|
+
{
|
|
79
|
+
"name": "write-a-skill",
|
|
80
|
+
"source": "https://github.com/mattpocock/skills/tree/main/skills/productivity/write-a-skill",
|
|
81
|
+
"commit": "694fa30311e02c2639942308513555e61ee84a6f",
|
|
82
|
+
"license": "MIT; see vendor/matt-pocock/LICENSE",
|
|
83
|
+
"vendored_path": "skills/write-a-skill",
|
|
84
|
+
"imported_at": "2026-06-17T10:11:18Z"
|
|
85
|
+
},
|
|
86
|
+
{
|
|
87
|
+
"name": "codebase-design",
|
|
88
|
+
"source": "https://github.com/mattpocock/skills/tree/main/skills/engineering/codebase-design",
|
|
89
|
+
"commit": "6eeb81b5fcfeeb5bd531dd47ab2f9f2bbea27461",
|
|
90
|
+
"license": "MIT; see vendor/matt-pocock/LICENSE",
|
|
91
|
+
"vendored_path": "skills/codebase-design",
|
|
92
|
+
"imported_at": "2026-06-18T10:53:47Z"
|
|
93
|
+
},
|
|
94
|
+
{
|
|
95
|
+
"name": "diagnosing-bugs",
|
|
96
|
+
"source": "https://github.com/mattpocock/skills/tree/main/skills/engineering/diagnosing-bugs",
|
|
97
|
+
"commit": "6eeb81b5fcfeeb5bd531dd47ab2f9f2bbea27461",
|
|
98
|
+
"license": "MIT; see vendor/matt-pocock/LICENSE",
|
|
99
|
+
"vendored_path": "skills/diagnosing-bugs",
|
|
100
|
+
"imported_at": "2026-06-18T10:53:47Z"
|
|
101
|
+
},
|
|
102
|
+
{
|
|
103
|
+
"name": "domain-modeling",
|
|
104
|
+
"source": "https://github.com/mattpocock/skills/tree/main/skills/engineering/domain-modeling",
|
|
105
|
+
"commit": "6eeb81b5fcfeeb5bd531dd47ab2f9f2bbea27461",
|
|
106
|
+
"license": "MIT; see vendor/matt-pocock/LICENSE",
|
|
107
|
+
"vendored_path": "skills/domain-modeling",
|
|
108
|
+
"imported_at": "2026-06-18T10:53:47Z"
|
|
109
|
+
},
|
|
110
|
+
{
|
|
111
|
+
"name": "grilling",
|
|
112
|
+
"source": "https://github.com/mattpocock/skills/tree/main/skills/productivity/grilling",
|
|
113
|
+
"commit": "6eeb81b5fcfeeb5bd531dd47ab2f9f2bbea27461",
|
|
114
|
+
"license": "MIT; see vendor/matt-pocock/LICENSE",
|
|
115
|
+
"vendored_path": "skills/grilling",
|
|
116
|
+
"imported_at": "2026-06-18T10:53:47Z"
|
|
117
|
+
}
|
|
118
|
+
]
|
|
119
|
+
}
|