@deftai/directive-content 0.72.0 → 0.73.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/Taskfile.yml +5 -6
- package/package.json +1 -1
- package/packs/skills/skills-pack-0.1.json +45 -23
- package/skills/deft-directive-feedback/SKILL.md +5 -0
- package/skills/deft-directive-gh-arch/SKILL.md +1 -1
- package/skills/deft-directive-review-cycle/SKILL.md +6 -6
- package/skills/deft-directive-setup/SKILL.md +2 -2
- package/skills/deft-directive-swarm/SKILL.md +33 -33
- package/templates/agent-prompt-preamble.md +17 -17
- package/templates/agents-entry.md +8 -6
package/Taskfile.yml
CHANGED
|
@@ -4,9 +4,9 @@ vars:
|
|
|
4
4
|
PROJECT_NAME: deft
|
|
5
5
|
# VERSION is resolved dynamically (#723) so `task build` produces
|
|
6
6
|
# `dist/deft-{version}.{zip,tar.gz}` matching the in-flight release.
|
|
7
|
-
# Resolution priority
|
|
8
|
-
# 1. $DEFT_RELEASE_VERSION env var (set by
|
|
9
|
-
# so
|
|
7
|
+
# Resolution priority:
|
|
8
|
+
# 1. $DEFT_RELEASE_VERSION env var (set by `task release -- 0.21.0`
|
|
9
|
+
# so the release task builds dist/deft-0.21.0.zip).
|
|
10
10
|
# 2. `git describe --tags --abbrev=0` stripped of leading `v`.
|
|
11
11
|
# 3. `0.0.0-dev` fallback for fresh checkouts with no tags.
|
|
12
12
|
# The previous hard-coded literal (`VERSION: 0.20.0`) was the root cause
|
|
@@ -14,8 +14,7 @@ vars:
|
|
|
14
14
|
# because nothing in the release pipeline updated the Taskfile literal.
|
|
15
15
|
# Inline POSIX sh (run by go-task's embedded mvdan/sh interpreter so the
|
|
16
16
|
# block is cross-platform on Windows / macOS / Linux without requiring
|
|
17
|
-
# uv/python at parse time
|
|
18
|
-
# scripts/resolve_version.py for Python callers + regression tests).
|
|
17
|
+
# uv/python at parse time).
|
|
19
18
|
VERSION:
|
|
20
19
|
sh: |
|
|
21
20
|
if [ -n "$DEFT_RELEASE_VERSION" ]; then
|
|
@@ -869,7 +868,7 @@ tasks:
|
|
|
869
868
|
CLI_ARGS: "{{.CLI_ARGS}}"
|
|
870
869
|
|
|
871
870
|
triage:summary:
|
|
872
|
-
desc: "Emit the one-line triage state for the session-start ritual (D2 / #1122). Always exits 0; appends a JSONL record to
|
|
871
|
+
desc: "Emit the one-line triage state for the session-start ritual (D2 / #1122). Always exits 0; appends a JSONL record to <lifecycle-root>/.triage-cache/summary-history.jsonl. -- task triage:summary -- [--json] [--no-history]"
|
|
873
872
|
cmds:
|
|
874
873
|
- task: triage-summary:summary
|
|
875
874
|
vars:
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@deftai/directive-content",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.73.0",
|
|
4
4
|
"description": "Shippable Directive framework content in the consumer .deft/core/ layout (C1 flatten), plus the engine surfaces (.githooks/, Taskfile.yml, tasks/) the deposit wires. Python-free per #2022 Phase 3. Refs #11, #1669, #1967.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"files": [
|