@tsfpp/agents 1.3.5 → 1.5.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/CHANGELOG.md +30 -0
- package/README.md +218 -31
- package/bin/bootstrap.sh +0 -0
- package/copilot/agents/tsfpp-annotate.agent.md +99 -119
- package/copilot/agents/tsfpp-audit.agent.md +123 -32
- package/copilot/agents/tsfpp-guarded-coding.agent.md +25 -0
- package/copilot/instructions/tsfpp-base.instructions.md +5 -0
- package/copilot/prompts/trunk-changelog.prompt.md +160 -0
- package/copilot/skills/annotation-standard/SKILL.md +196 -0
- package/copilot/skills/config-standard/SKILL.md +205 -0
- package/copilot/skills/log-standard/SKILL.md +148 -0
- package/init.mjs +4 -0
- package/package.json +6 -6
package/init.mjs
CHANGED
|
@@ -55,6 +55,7 @@ const FILES = [
|
|
|
55
55
|
|
|
56
56
|
// Prompts
|
|
57
57
|
['copilot/prompts/trunk-init-repo.prompt.md', '.github/prompts/trunk-init-repo.prompt.md'],
|
|
58
|
+
['copilot/prompts/trunk-changelog.prompt.md', '.github/prompts/trunk-changelog.prompt.md'],
|
|
58
59
|
['copilot/prompts/tsfpp-new-module.prompt.md', '.github/prompts/tsfpp-new-module.prompt.md'],
|
|
59
60
|
['copilot/prompts/tsfpp-boundary-review.prompt.md', '.github/prompts/tsfpp-boundary-review.prompt.md'],
|
|
60
61
|
|
|
@@ -64,6 +65,9 @@ const FILES = [
|
|
|
64
65
|
['copilot/skills/boundary-api/SKILL.md', '.github/skills/boundary-api/SKILL.md'],
|
|
65
66
|
['copilot/skills/react-coding-standard/SKILL.md', '.github/skills/react-coding-standard/SKILL.md'],
|
|
66
67
|
['copilot/skills/test-standard/SKILL.md', '.github/skills/test-standard/SKILL.md'],
|
|
68
|
+
['copilot/skills/annotation-standard/SKILL.md', '.github/skills/annotation-standard/SKILL.md'],
|
|
69
|
+
['copilot/skills/log-standard/SKILL.md', '.github/skills/log-standard/SKILL.md'],
|
|
70
|
+
['copilot/skills/config-standard/SKILL.md', '.github/skills/config-standard/SKILL.md'],
|
|
67
71
|
|
|
68
72
|
// Claude Code
|
|
69
73
|
['claude/CLAUDE.md', '.claude/CLAUDE.md'],
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tsfpp/agents",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.5.0",
|
|
4
4
|
"description": "Workspace AI tooling for TSF++ projects: scoped instructions, coding agents, and reusable prompts",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"tsfpp",
|
|
@@ -37,11 +37,11 @@
|
|
|
37
37
|
"LICENSE"
|
|
38
38
|
],
|
|
39
39
|
"peerDependencies": {
|
|
40
|
-
"@tsfpp/standard":
|
|
41
|
-
"@tsfpp/prelude":
|
|
42
|
-
"@tsfpp/boundary":
|
|
43
|
-
"@tsfpp/eslint-config":">=1.0.0",
|
|
44
|
-
"@tsfpp/tsconfig":
|
|
40
|
+
"@tsfpp/standard": ">=1.0.0",
|
|
41
|
+
"@tsfpp/prelude": ">=1.0.0",
|
|
42
|
+
"@tsfpp/boundary": ">=1.0.0",
|
|
43
|
+
"@tsfpp/eslint-config": ">=1.0.0",
|
|
44
|
+
"@tsfpp/tsconfig": ">=1.0.0"
|
|
45
45
|
},
|
|
46
46
|
"publishConfig": {
|
|
47
47
|
"access": "public"
|