@deftai/directive-content 0.62.0 → 0.64.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 +4 -25
- package/package.json +1 -1
- package/packs/skills/skills-pack-0.1.json +2 -2
- package/skills/deft-directive-review-cycle/SKILL.md +7 -5
- package/skills/deft-directive-swarm/SKILL.md +18 -5
- package/tasks/core.yml +9 -123
- package/tasks/ts.yml +2 -293
- package/tasks/verify.yml +11 -0
- package/tasks/ci.yml +0 -57
package/Taskfile.yml
CHANGED
|
@@ -313,10 +313,6 @@ includes:
|
|
|
313
313
|
taskfile: ./tasks/core.yml
|
|
314
314
|
optional: true
|
|
315
315
|
internal: true
|
|
316
|
-
ci:
|
|
317
|
-
taskfile: ./tasks/ci.yml
|
|
318
|
-
optional: true
|
|
319
|
-
internal: true
|
|
320
316
|
# npm consumer deposits resolve verbs through global `deft` when the vendored
|
|
321
317
|
# packages/cli/dist/bin.js is absent (#2022 Phase 3).
|
|
322
318
|
engine:
|
|
@@ -342,18 +338,15 @@ tasks:
|
|
|
342
338
|
ENGINE_CMD: 'check --framework-root "{{.TASKFILE_DIR}}" --project-root "{{.USER_WORKING_DIR}}"'
|
|
343
339
|
|
|
344
340
|
check:framework-source:
|
|
345
|
-
desc: "Run all framework source-repo pre-commit checks
|
|
341
|
+
desc: "Run all framework source-repo pre-commit checks (TS-only after #1860). Sole wired consumer of maintainer-only core:build / core:clean."
|
|
346
342
|
deps:
|
|
347
|
-
# Maintainer-only Python lanes (tasks/core.yml) — not on check:consumer.
|
|
348
|
-
- core:validate
|
|
349
|
-
- core:lint
|
|
350
|
-
- core:test
|
|
351
343
|
- ts:check-lane
|
|
352
344
|
- toolchain:check
|
|
353
345
|
- verify:stubs
|
|
354
346
|
- verify:links
|
|
355
347
|
- verify:rule-ownership
|
|
356
348
|
- verify:content-manifest
|
|
349
|
+
- verify:cursor-tier1
|
|
357
350
|
- verify:go-freeze
|
|
358
351
|
- verify:bridge-drift
|
|
359
352
|
- verify:branch
|
|
@@ -442,22 +435,8 @@ tasks:
|
|
|
442
435
|
# Oracle/fallback (parity): scripts/verify_no_task_runtime.py (#1854 s3).
|
|
443
436
|
- node "{{.TASKFILE_DIR}}/packages/cli/dist/bin.js" verify-no-task-runtime
|
|
444
437
|
|
|
445
|
-
#
|
|
446
|
-
#
|
|
447
|
-
# triage_bootstrap watchdog regression suite (5 of the 6 marked tests),
|
|
448
|
-
# which burns ~5.85s on real time.sleep / thread joins -- the proper
|
|
449
|
-
# monkeypatch refactor is tracked as a follow-up to #975. The `-o
|
|
450
|
-
# addopts=` reset overrides the pyproject default of `-m 'not slow'`
|
|
451
|
-
# so the `-m slow` selector here actually picks up the marked tests.
|
|
452
|
-
check:slow:
|
|
453
|
-
desc: "Run the @pytest.mark.slow test lane (watchdog regression suite excluded from `task check` by default, #975). Maintainer-only Python lane — not part of `check:consumer`."
|
|
454
|
-
cmds:
|
|
455
|
-
# `--project` pins uv to the framework root so ancestor pyproject.toml
|
|
456
|
-
# files cannot hijack the resolver via uv's upward walk (#1011).
|
|
457
|
-
- uv --project "{{.TASKFILE_DIR}}" run pytest tests/ -o addopts= -m slow
|
|
458
|
-
|
|
459
|
-
# Maintainer-only packaging aliases (#2022 Phase 2). `core:*` is internal;
|
|
460
|
-
# these root aliases remain callable for release Step 6 (`task build`) and
|
|
438
|
+
# Maintainer-only packaging aliases (#1860). `core:*` is internal;
|
|
439
|
+
# these root aliases remain callable for release Step 8 (`task build`) and
|
|
461
440
|
# local maintainer workflows. Not wired into `check:consumer`.
|
|
462
441
|
build:
|
|
463
442
|
desc: Package framework for distribution (maintainer-only; alias for core:build)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@deftai/directive-content",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.64.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": [
|