deuk-agent-flow 4.0.20 → 4.0.21

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/CHANGELOG.ko.md CHANGED
@@ -8,6 +8,13 @@
8
8
 
9
9
  ## [Unreleased]
10
10
 
11
+ ## [4.0.21] - 2026-05-08
12
+
13
+ ### 수정됨 (Fixed)
14
+
15
+ - **docs:** Shields가 허용하는 형식으로 커스텀 다운로드 배지 JSON을 복구하고, 영문/한글 README 상단의 통합 `deuk-flow` 다운로드 배지를 다시 노출했습니다.
16
+ - **release:** `docs/badges/npm-downloads.json`를 공개 미러에도 동기화하고 npm 공개 패키지 표면에서 내부 전용 payload 유입을 제거했습니다.
17
+
11
18
  ## [4.0.20] - 2026-05-08
12
19
 
13
20
  ### 수정됨 (Fixed)
package/CHANGELOG.md CHANGED
@@ -10,6 +10,13 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
10
10
 
11
11
  - **cli:** stop ticket discovery at the current agent-rule boundary instead of inheriting the parent workspace.
12
12
 
13
+ ## [4.0.21] - 2026-05-08
14
+
15
+ ### Fixed
16
+
17
+ - **docs:** repaired the custom downloads badge endpoint payload so Shields accepts it, and restored the combined `deuk-flow` downloads badge at the top of the English and Korean README surfaces.
18
+ - **release:** synced `docs/badges/npm-downloads.json` into the public mirror and removed internal-only package payload leakage from the npm release surface.
19
+
13
20
  ## [4.0.20] - 2026-05-08
14
21
 
15
22
  ### Fixed
@@ -4,29 +4,5 @@
4
4
  "message": "1.8K/last-month",
5
5
  "color": "2f6fed",
6
6
  "namedLogo": "npm",
7
- "cacheSeconds": 86400,
8
- "total": 1790,
9
- "canonicalPackage": "deuk-agent-flow",
10
- "canonicalDownloads": 0,
11
- "aliasTotal": 1790,
12
- "range": "last-month",
13
- "packages": [
14
- {
15
- "package": "deuk-agent-flow",
16
- "downloads": 0,
17
- "missing": true
18
- },
19
- {
20
- "package": "deuk-agent-rule",
21
- "downloads": 1790,
22
- "missing": false
23
- }
24
- ],
25
- "aliases": [
26
- {
27
- "package": "deuk-agent-rule",
28
- "downloads": 1790,
29
- "missing": false
30
- }
31
- ]
7
+ "cacheSeconds": 86400
32
8
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "deuk-agent-flow",
3
- "version": "4.0.20",
3
+ "version": "4.0.21",
4
4
  "description": "Keep AI coding work from vanishing between chats: repo-owned tickets, scope, verification, and memory for AGENTS.md-powered agents.",
5
5
  "keywords": [
6
6
  "agents-md",
@@ -71,6 +71,9 @@ export async function buildDownloadsBadge(opts) {
71
71
  const canonical = packages.find((pkg) => pkg.package === canonicalPackage) || packages[0];
72
72
  const aliases = packages.filter((pkg) => pkg.package !== canonical.package);
73
73
  const aliasTotal = aliases.reduce((sum, pkg) => sum + pkg.downloads, 0);
74
+ void canonical;
75
+ void aliasTotal;
76
+ void aliases;
74
77
 
75
78
  return {
76
79
  schemaVersion: 1,
@@ -79,13 +82,6 @@ export async function buildDownloadsBadge(opts) {
79
82
  color: "2f6fed",
80
83
  namedLogo: "npm",
81
84
  cacheSeconds: 86400,
82
- total,
83
- canonicalPackage: canonical.package,
84
- canonicalDownloads: canonical.downloads,
85
- aliasTotal,
86
- range: opts.range,
87
- packages,
88
- aliases,
89
85
  };
90
86
  }
91
87