@deployxai/dxc 0.1.2 → 0.1.4
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/README.md +10 -127
- package/dist/chunks/{chunk-UO2FNP6N.js → chunk-GCGIIKQJ.js} +1 -1
- package/dist/chunks/chunk-JGUPNE36.js +2077 -0
- package/dist/chunks/{knowledge-4ZXXUSDQ.js → knowledge-6LOGJETT.js} +902 -22
- package/dist/chunks/{monitor-63LXCSZA.js → monitor-CYJPUX5V.js} +2 -2
- package/dist/index.js +575 -63
- package/package.json +3 -3
- package/skills/dxc-article-outline/references/outline-methods.md +20 -0
- package/skills/dxc-article-write/SKILL.md +34 -2
- package/skills/dxc-article-write/references/writing-methods.md +20 -0
- package/skills/dxc-content-brief/references/brief-method.md +18 -0
- package/skills/dxc-content-review/SKILL.md +2 -0
- package/skills/dxc-content-review/references/review-checklist.md +17 -0
- package/skills/dxc-content-workflow/SKILL.md +42 -8
- package/skills/dxc-content-workflow/references/onboarding-questions.md +67 -41
- package/skills/dxc-content-workflow/references/stage-contract.md +4 -1
- package/skills/dxc-knowledge/SKILL.md +30 -0
- package/skills/dxc-knowledge/agents/openai.yaml +6 -0
- package/skills/dxc-memory/SKILL.md +28 -0
- package/skills/dxc-memory/agents/openai.yaml +6 -0
- package/skills/dxc-profile/SKILL.md +32 -0
- package/skills/dxc-profile/agents/openai.yaml +6 -0
- package/skills/dxc-quote-curator/SKILL.md +35 -0
- package/skills/dxc-quote-curator/agents/openai.yaml +6 -0
- package/skills/dxc-research/references/research-method.md +21 -0
- package/skills/dxc-title-write/SKILL.md +6 -1
- package/skills/dxc-title-write/references/title-methods.md +15 -0
- package/skills/dxc-visual-plan/SKILL.md +24 -4
- package/skills/dxc-visual-plan/references/visual-methods.md +18 -0
- package/skills/dxc-wechat-publisher/SKILL.md +1 -0
- package/dist/chunks/chunk-ZPBFGBWP.js +0 -16422
- package/docs/00-project-context.md +0 -125
- package/docs/01-north-star-architecture.md +0 -234
- package/docs/02-mvp-technical-design.md +0 -553
- package/docs/03-domain-state-api.md +0 -600
- package/docs/04-security-and-operations.md +0 -413
- package/docs/05-delivery-plan.md +0 -407
- package/docs/README.md +0 -44
- package/docs/decisions/0001-initial-architecture.md +0 -57
- package/docs/decisions/0002-mongodb-environment-boundary.md +0 -42
- package/docs/decisions/0003-staged-production-topology.md +0 -33
- package/docs/decisions/0004-local-first-agent-research-runtime.md +0 -71
- package/docs/decisions/0005-official-skill-orchestration-and-local-content-memory.md +0 -97
- package/docs/decisions/0006-separate-wechat-user-login-from-account-authorization.md +0 -87
- package/docs/decisions/0007-explicit-personal-wechat-start.md +0 -67
- package/docs/decisions/0008-end-to-end-content-workflow-continuity.md +0 -115
- package/docs/decisions/0009-privileged-multitenant-draft-scheduling.md +0 -36
- package/docs/decisions/0009-versioned-cloud-template-catalog.md +0 -39
- package/docs/decisions/0010-cli-runtime-and-default-server.md +0 -31
- package/docs/decisions/0011-user-memory-and-explicit-history-library.md +0 -30
- package/docs/eight-stage-implementation-audit.md +0 -62
- package/docs/first-user-guide.md +0 -191
- package/docs/history/content-forge-prd-v0.2-summary.md +0 -81
- package/docs/local-development.md +0 -520
- package/docs/references/aliyun-oss-production-setup.md +0 -89
- package/docs/references/legacy-content-to-wechat-contract.md +0 -223
- package/docs/references/renderer-compatibility-report.md +0 -68
- package/docs/references/source-inventory.md +0 -179
- package/docs/references/wechat-renderer-platform-validation.md +0 -92
- package/docs/references/wechat-third-party-platform-setup.md +0 -159
- package/docs/references/wechat-website-login-setup.md +0 -137
- package/docs/references/wemd-template-attribution.md +0 -25
- package/docs/research-monitoring-design.md +0 -235
- package/docs/todo-preview-local-first.md +0 -31
- package/docs/workbuddy-first-user-runbook.md +0 -244
- package/docs//345/221/230/345/267/245BCDE/347/232/204skill/employee-b-research-analyst/SKILL.md +0 -230
- package/docs//345/221/230/345/267/245BCDE/347/232/204skill/employee-c-outline-architect/SKILL.md +0 -194
- package/docs//345/221/230/345/267/245BCDE/347/232/204skill/employee-d-content-writer/SKILL.md +0 -296
- package/docs//345/221/230/345/267/245BCDE/347/232/204skill/employee-e-visual-designer/SKILL.md +0 -268
|
@@ -2,7 +2,7 @@ import { createRequire as __dxcCreateRequire } from "node:module"; const require
|
|
|
2
2
|
import {
|
|
3
3
|
SourceCli,
|
|
4
4
|
SourceCliError
|
|
5
|
-
} from "./chunk-
|
|
5
|
+
} from "./chunk-GCGIIKQJ.js";
|
|
6
6
|
import {
|
|
7
7
|
CONTENT_MONITOR_SCHEMA_VERSION,
|
|
8
8
|
LocalStateError,
|
|
@@ -14,7 +14,7 @@ import {
|
|
|
14
14
|
contentMonitorStatusResultSchema,
|
|
15
15
|
ensurePrivateRegularFile,
|
|
16
16
|
sourceFetchKindSchema
|
|
17
|
-
} from "./chunk-
|
|
17
|
+
} from "./chunk-JGUPNE36.js";
|
|
18
18
|
|
|
19
19
|
// apps/cli/src/monitor.ts
|
|
20
20
|
import { createHash, randomUUID as systemRandomUUID } from "node:crypto";
|