tina4-nodejs 3.13.55 → 3.13.56
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/CLAUDE.md +2 -2
- package/package.json +1 -1
- package/packages/core/src/ai.ts +6 -0
package/CLAUDE.md
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
# CLAUDE.md - AI Developer Guide for tina4-nodejs (v3.13.
|
|
1
|
+
# CLAUDE.md - AI Developer Guide for tina4-nodejs (v3.13.56)
|
|
2
2
|
|
|
3
3
|
> This file helps AI assistants (Claude, Copilot, Cursor, etc.) understand and work on this codebase effectively.
|
|
4
4
|
|
|
5
5
|
## What This Project Is
|
|
6
6
|
|
|
7
|
-
Tina4 for Node.js/TypeScript v3.13.
|
|
7
|
+
Tina4 for Node.js/TypeScript v3.13.56 — The Intelligent Native Application 4ramework. A convention-over-configuration structural paradigm. The developer writes TypeScript; Tina4 is invisible infrastructure.
|
|
8
8
|
|
|
9
9
|
The philosophy: zero ceremony, batteries included, file system as source of truth.
|
|
10
10
|
|
package/package.json
CHANGED
package/packages/core/src/ai.ts
CHANGED
|
@@ -179,6 +179,10 @@ export function skillBlock(contextFile: string): string {
|
|
|
179
179
|
"- **tina4-js** \u2014 Read `.claude/skills/tina4-js/SKILL.md` for frontend work.",
|
|
180
180
|
"- **tina4-maintainer** \u2014 Read `.claude/skills/tina4-maintainer/SKILL.md` for framework-level changes.",
|
|
181
181
|
"",
|
|
182
|
+
"If Tina4 behaves differently from what these skills describe, that is a bug in the skill.",
|
|
183
|
+
"Tell the developer, then report it at https://tina4.com/report-a-skill",
|
|
184
|
+
"(or open an issue on the matching tina4stack/* GitHub repo).",
|
|
185
|
+
"",
|
|
182
186
|
"See https://tina4.com for full docs.",
|
|
183
187
|
].join("\n")
|
|
184
188
|
: [
|
|
@@ -186,6 +190,8 @@ export function skillBlock(contextFile: string): string {
|
|
|
186
190
|
" .claude/skills/tina4-developer/SKILL.md (feature development)",
|
|
187
191
|
" .claude/skills/tina4-js/SKILL.md (frontend / tina4-js)",
|
|
188
192
|
" .claude/skills/tina4-maintainer/SKILL.md (framework-level changes)",
|
|
193
|
+
"Found a skill that disagrees with how Tina4 actually behaves? Tell the developer,",
|
|
194
|
+
"then report it at https://tina4.com/report-a-skill",
|
|
189
195
|
"Docs: https://tina4.com",
|
|
190
196
|
].join("\n");
|
|
191
197
|
return `${start}\n${body}\n${end}`;
|