@dtmd/temper 0.0.11 → 0.0.12
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/dist/src/builtins.d.ts +10 -6
- package/dist/src/builtins.js +12 -8
- package/package.json +3 -3
package/dist/src/builtins.d.ts
CHANGED
|
@@ -816,12 +816,16 @@ export declare const skillDefaultContract: readonly Clause[];
|
|
|
816
816
|
*/
|
|
817
817
|
export declare const supportingDocDefaultContract: readonly Clause[];
|
|
818
818
|
/**
|
|
819
|
-
* The default contract for `command` —
|
|
820
|
-
*
|
|
821
|
-
*
|
|
822
|
-
*
|
|
823
|
-
*
|
|
824
|
-
* retrieved 2026-07-
|
|
819
|
+
* The default contract for `command` — deliberately empty. A command is a lone
|
|
820
|
+
* markdown file whose frontmatter is entirely optional, matching the Claude Code
|
|
821
|
+
* runtime's documented flexibility. Where a skill requires `name` and
|
|
822
|
+
* `description` by the Agent Skills open standard, a command file may carry any,
|
|
823
|
+
* all, or none of them — identity comes from the filename stem, not a field
|
|
824
|
+
* (code.claude.com/docs/en/slash-commands, retrieved 2026-07-22).
|
|
825
|
+
*
|
|
826
|
+
* A command that passes here holds no contract constraint and loads everywhere
|
|
827
|
+
* the format is honored. The strictness stays with the skill kind, which enforces
|
|
828
|
+
* the portable profile for skill directories.
|
|
825
829
|
*/
|
|
826
830
|
export declare const commandDefaultContract: readonly Clause[];
|
|
827
831
|
/**
|
package/dist/src/builtins.js
CHANGED
|
@@ -762,14 +762,18 @@ export const supportingDocDefaultContract = [
|
|
|
762
762
|
}),
|
|
763
763
|
];
|
|
764
764
|
/**
|
|
765
|
-
* The default contract for `command` —
|
|
766
|
-
*
|
|
767
|
-
*
|
|
768
|
-
*
|
|
769
|
-
*
|
|
770
|
-
* retrieved 2026-07-
|
|
771
|
-
|
|
772
|
-
|
|
765
|
+
* The default contract for `command` — deliberately empty. A command is a lone
|
|
766
|
+
* markdown file whose frontmatter is entirely optional, matching the Claude Code
|
|
767
|
+
* runtime's documented flexibility. Where a skill requires `name` and
|
|
768
|
+
* `description` by the Agent Skills open standard, a command file may carry any,
|
|
769
|
+
* all, or none of them — identity comes from the filename stem, not a field
|
|
770
|
+
* (code.claude.com/docs/en/slash-commands, retrieved 2026-07-22).
|
|
771
|
+
*
|
|
772
|
+
* A command that passes here holds no contract constraint and loads everywhere
|
|
773
|
+
* the format is honored. The strictness stays with the skill kind, which enforces
|
|
774
|
+
* the portable profile for skill directories.
|
|
775
|
+
*/
|
|
776
|
+
export const commandDefaultContract = [];
|
|
773
777
|
/**
|
|
774
778
|
* The default contract for `agent` — Anthropic's documented subagent contract
|
|
775
779
|
* (code.claude.com/docs/en/sub-agents, retrieved 2026-07-15): `name` and
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dtmd/temper",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.12",
|
|
4
4
|
"description": "The temper authoring face — the six-noun model as typed modules: harness(), kind<T>(), clause values, needs, and file()/text/blocks(). Emit compiles to the declaration rows the engine reads, a byte-faithful projection, and the lock.",
|
|
5
5
|
"license": "(MIT OR Apache-2.0)",
|
|
6
6
|
"repository": {
|
|
@@ -52,7 +52,7 @@
|
|
|
52
52
|
"temper": "bin/temper.js"
|
|
53
53
|
},
|
|
54
54
|
"optionalDependencies": {
|
|
55
|
-
"@dtmd/temper-linux-x64": "0.0.
|
|
56
|
-
"@dtmd/temper-win32-x64": "0.0.
|
|
55
|
+
"@dtmd/temper-linux-x64": "0.0.12",
|
|
56
|
+
"@dtmd/temper-win32-x64": "0.0.12"
|
|
57
57
|
}
|
|
58
58
|
}
|