@carecard/jwt-read 3.1.16 → 3.1.17
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/.agents/skills/carecard-workspace-standards/SKILL.md +5 -5
- package/.agents/skills/github-pr-create-update/SKILL.md +6 -6
- package/.agents/skills/github-pr-merge-cleanup/SKILL.md +6 -6
- package/.agents/skills/pkg-jwt-read-jwt-middleware-library/SKILL.md +4 -4
- package/.agents/skills/software-design-patterns-and-clean-code/SKILL.md +1 -1
- package/package.json +3 -3
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: carecard-workspace-standards
|
|
3
|
-
description: Follow the shared SO_CareCardCa/CareCard workspace coding, testing, repository, dependency, shared package, frontend, database, API response, and security standards. Use before modifying, testing, reviewing, or debugging any ms-*, pkg-*, app-*, website, dashboard, or other CareCard repository in this workspace, especially when choosing validation commands, package boundaries, TypeScript types, dependencies, API contracts, database logic, service patterns, or frontend architecture.
|
|
3
|
+
description: 'Follow the shared SO_CareCardCa/CareCard workspace coding, testing, repository, dependency, shared package, frontend, database, API response, and security standards. Use before modifying, testing, reviewing, or debugging any ms-*, pkg-*, app-*, website, dashboard, or other CareCard repository in this workspace, especially when choosing validation commands, package boundaries, TypeScript types, dependencies, API contracts, database logic, service patterns, or frontend architecture.'
|
|
4
4
|
---
|
|
5
5
|
|
|
6
6
|
# CareCard Workspace Standards
|
|
@@ -43,8 +43,8 @@ Use before modifying, testing, reviewing, or debugging any CareCard workspace re
|
|
|
43
43
|
|
|
44
44
|
## Safety Constraints
|
|
45
45
|
|
|
46
|
-
- Do not edit generated output, dependency folders, logs, coverage, dist, or build artifacts unless the task
|
|
47
|
-
- Do not revert or overwrite user changes; stage only
|
|
46
|
+
- Do not edit generated output, dependency folders, logs, coverage, dist, or build artifacts unless the task requires it.
|
|
47
|
+
- Do not revert or overwrite user changes; stage only requested skill or instruction files.
|
|
48
48
|
- Never suppress errors, lint failures, type failures, security failures, or failing tests; fix the underlying issue or report the blocker.
|
|
49
49
|
- Do not log or expose secrets, JWTs, passwords, credentials, private keys, sensitive personal data, SQL internals, or stack traces.
|
|
50
50
|
|
|
@@ -128,11 +128,11 @@ config.
|
|
|
128
128
|
|
|
129
129
|
## Remote Git Operations Guardrail
|
|
130
130
|
|
|
131
|
-
Do not run remote Git or GitHub operations unless the current user request explicitly asks for
|
|
131
|
+
Do not run remote Git or GitHub operations unless the current user request explicitly asks for them. This includes `git fetch`, `git pull`, `git push`, `git push --delete`, remote branch cleanup, GitHub API calls, and any `gh pr` command that creates, updates, readies, merges, closes, or cleans up a pull request. Do not infer permission from branch names, validation needs, prior workflow habits, or convenience; ask first when remote state would help but was not requested.
|
|
132
132
|
|
|
133
133
|
## Commit Continuation Rule
|
|
134
134
|
|
|
135
|
-
Do not amend
|
|
135
|
+
Do not amend commits unless the user explicitly asks. If
|
|
136
136
|
hooks, formatters, tests, docs, skills, validation, or review follow-up create
|
|
137
137
|
additional changes after a commit already exists, keep history additive by
|
|
138
138
|
making a new commit in the affected repository.
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: github-pr-create-update
|
|
3
|
-
description: Use only when the user explicitly asks for remote Git or GitHub PR work: pushing a branch, creating or updating a PR, or marking a PR ready from the current repository branch.
|
|
3
|
+
description: 'Use only when the user explicitly asks for remote Git or GitHub PR work: pushing a branch, creating or updating a PR, or marking a PR ready from the current repository branch.'
|
|
4
4
|
---
|
|
5
5
|
|
|
6
6
|
# Pull Request Create
|
|
7
7
|
|
|
8
8
|
## Purpose
|
|
9
9
|
|
|
10
|
-
|
|
10
|
+
After the user explicitly asks for remote Git or GitHub PR work, create, update, verify, push, and mark ready a GitHub pull request from the current repository branch into origin/development.
|
|
11
11
|
|
|
12
12
|
## When To Use
|
|
13
13
|
|
|
@@ -20,7 +20,7 @@ Only after the user explicitly asks for remote Git or GitHub PR work, create, up
|
|
|
20
20
|
|
|
21
21
|
## Remote Git Operations Guardrail
|
|
22
22
|
|
|
23
|
-
Do not run remote Git or GitHub operations unless the current user request explicitly asks for
|
|
23
|
+
Do not run remote Git or GitHub operations unless the current user request explicitly asks for them. This includes `git fetch`, `git pull`, `git push`, `git push --delete`, remote branch cleanup, GitHub API calls, and any `gh pr` command that creates, updates, readies, merges, closes, or cleans up a pull request. Do not infer permission from branch names, validation needs, prior workflow habits, or convenience; ask first when remote state would help but was not requested.
|
|
24
24
|
|
|
25
25
|
## Relevant Files And Directories
|
|
26
26
|
|
|
@@ -41,13 +41,13 @@ Do not run remote Git or GitHub operations unless the current user request expli
|
|
|
41
41
|
|
|
42
42
|
## Safety Constraints
|
|
43
43
|
|
|
44
|
-
- Do not edit generated output, dependency folders, logs, coverage, dist, or build artifacts unless the task
|
|
45
|
-
- Do not revert or overwrite user changes; stage only
|
|
44
|
+
- Do not edit generated output, dependency folders, logs, coverage, dist, or build artifacts unless the task requires it.
|
|
45
|
+
- Do not revert or overwrite user changes; stage only requested skill or instruction files.
|
|
46
46
|
- Never suppress errors, lint failures, type failures, security failures, or failing tests; fix the underlying issue or report the blocker.
|
|
47
47
|
|
|
48
48
|
## Commit Continuation Rule
|
|
49
49
|
|
|
50
|
-
Do not amend
|
|
50
|
+
Do not amend commits unless the user explicitly asks. If
|
|
51
51
|
hook, formatter, documentation, skill, validation, or review follow-up changes
|
|
52
52
|
appear after a commit, stage only the intended files and make a new commit with
|
|
53
53
|
a clear message.
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: github-pr-merge-cleanup
|
|
3
|
-
description: Use only when the user explicitly asks for remote Git or GitHub PR work: reviewing remote mergeability, validating, merging, closing, deleting, or cleaning up a pull request branch.
|
|
3
|
+
description: 'Use only when the user explicitly asks for remote Git or GitHub PR work: reviewing remote mergeability, validating, merging, closing, deleting, or cleaning up a pull request branch.'
|
|
4
4
|
---
|
|
5
5
|
|
|
6
6
|
# Pull Request Merge Close
|
|
7
7
|
|
|
8
8
|
## Purpose
|
|
9
9
|
|
|
10
|
-
|
|
10
|
+
After the user explicitly asks for remote Git or GitHub PR work, review, validate, merge, close, delete branch, and clean local state for a GitHub pull request targeting origin/development.
|
|
11
11
|
|
|
12
12
|
## When To Use
|
|
13
13
|
|
|
@@ -20,7 +20,7 @@ Only after the user explicitly asks for remote Git or GitHub PR work, review, va
|
|
|
20
20
|
|
|
21
21
|
## Remote Git Operations Guardrail
|
|
22
22
|
|
|
23
|
-
Do not run remote Git or GitHub operations unless the current user request explicitly asks for
|
|
23
|
+
Do not run remote Git or GitHub operations unless the current user request explicitly asks for them. This includes `git fetch`, `git pull`, `git push`, `git push --delete`, remote branch cleanup, GitHub API calls, and any `gh pr` command that creates, updates, readies, merges, closes, or cleans up a pull request. Do not infer permission from branch names, validation needs, prior workflow habits, or convenience; ask first when remote state would help but was not requested.
|
|
24
24
|
|
|
25
25
|
## Relevant Files And Directories
|
|
26
26
|
|
|
@@ -41,13 +41,13 @@ Do not run remote Git or GitHub operations unless the current user request expli
|
|
|
41
41
|
|
|
42
42
|
## Safety Constraints
|
|
43
43
|
|
|
44
|
-
- Do not edit generated output, dependency folders, logs, coverage, dist, or build artifacts unless the task
|
|
45
|
-
- Do not revert or overwrite user changes; stage only
|
|
44
|
+
- Do not edit generated output, dependency folders, logs, coverage, dist, or build artifacts unless the task requires it.
|
|
45
|
+
- Do not revert or overwrite user changes; stage only requested skill or instruction files.
|
|
46
46
|
- Never suppress errors, lint failures, type failures, security failures, or failing tests; fix the underlying issue or report the blocker.
|
|
47
47
|
|
|
48
48
|
## Commit Continuation Rule
|
|
49
49
|
|
|
50
|
-
Do not amend
|
|
50
|
+
Do not amend commits unless the user explicitly asks. If
|
|
51
51
|
hook, formatter, documentation, skill, validation, or review follow-up changes
|
|
52
52
|
appear after a commit, stage only the intended files and make a new commit with
|
|
53
53
|
a clear message.
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: pkg-jwt-read-jwt-middleware-library
|
|
3
|
-
description: Use when changing pkg-jwt-read JWT parsing, middleware, visitor tokens, role checks, auth context, package exports, or tests.
|
|
3
|
+
description: 'Use when changing pkg-jwt-read JWT parsing, middleware, visitor tokens, role checks, auth context, package exports, or tests.'
|
|
4
4
|
---
|
|
5
5
|
|
|
6
6
|
# Package JWT Read
|
|
@@ -45,8 +45,8 @@ CareCard JWT read package for parsing, request attachment, visitor tokens, role
|
|
|
45
45
|
|
|
46
46
|
## Safety Constraints
|
|
47
47
|
|
|
48
|
-
- Do not edit generated output, dependency folders, logs, coverage, dist, or build artifacts unless the task
|
|
49
|
-
- Do not revert or overwrite user changes; stage only
|
|
48
|
+
- Do not edit generated output, dependency folders, logs, coverage, dist, or build artifacts unless the task requires it.
|
|
49
|
+
- Do not revert or overwrite user changes; stage only requested skill or instruction files.
|
|
50
50
|
- Never suppress errors, lint failures, type failures, security failures, or failing tests; fix the underlying issue or report the blocker.
|
|
51
51
|
- Do not log or expose secrets, JWTs, passwords, credentials, private keys, sensitive personal data, SQL internals, or stack traces.
|
|
52
52
|
|
|
@@ -224,7 +224,7 @@ and remaining risk.
|
|
|
224
224
|
|
|
225
225
|
## Remote Git Operations Guardrail
|
|
226
226
|
|
|
227
|
-
Do not run remote Git or GitHub operations unless the current user request explicitly asks for
|
|
227
|
+
Do not run remote Git or GitHub operations unless the current user request explicitly asks for them. This includes `git fetch`, `git pull`, `git push`, `git push --delete`, remote branch cleanup, GitHub API calls, and any `gh pr` command that creates, updates, readies, merges, closes, or cleans up a pull request. Do not infer permission from branch names, validation needs, prior workflow habits, or convenience; ask first when remote state would help but was not requested.
|
|
228
228
|
|
|
229
229
|
## Agent Guidance Git Workflow
|
|
230
230
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: software-design-patterns-and-clean-code
|
|
3
|
-
description: Use every time before coding, refactoring, debugging, or reviewing in this repository, alongside all other applicable skills, to apply pragmatic software design patterns, SOLID, Clean Code, and testable architecture.
|
|
3
|
+
description: 'Use every time before coding, refactoring, debugging, or reviewing in this repository, alongside all other applicable skills, to apply pragmatic software design patterns, SOLID, Clean Code, and testable architecture.'
|
|
4
4
|
---
|
|
5
5
|
|
|
6
6
|
# Software Design Patterns And Clean Code
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@carecard/jwt-read",
|
|
3
|
-
"version": "3.1.
|
|
3
|
+
"version": "3.1.17",
|
|
4
4
|
"repository": {
|
|
5
5
|
"type": "git",
|
|
6
6
|
"url": "https://github.com/CareCard-ca/pkg-jwt-read.git"
|
|
@@ -41,8 +41,8 @@
|
|
|
41
41
|
"typescript": "6.0.3"
|
|
42
42
|
},
|
|
43
43
|
"dependencies": {
|
|
44
|
+
"@carecard/auth-util": "3.1.16",
|
|
44
45
|
"@carecard/common-util": "3.1.15",
|
|
45
|
-
"@carecard/
|
|
46
|
-
"@carecard/validate": "3.1.24"
|
|
46
|
+
"@carecard/validate": "3.1.27"
|
|
47
47
|
}
|
|
48
48
|
}
|