pi-smart-compact 7.13.1 → 7.13.2

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.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Changelog
2
2
 
3
+ ## [7.13.2] - 2026-05-26
4
+
5
+ ### Changed
6
+ - **Package gallery presentation** — Replaced README badge images with plain text links so Pi package pages do not render badges as extra image cards.
7
+ - **Logo asset cleanup** — Replaced the oversized logo with a square transparent icon-only PNG and reduced README display size.
8
+ - **Repository hygiene** — Removed stale audit and archived planning markdown files from the tracked repository.
9
+ - **CI maintenance** — Updated GitHub Actions checkout from v4 to v6.
10
+
3
11
  ## [7.13.1] - 2026-05-26
4
12
 
5
13
  ### Fixed
package/README.md CHANGED
@@ -1,13 +1,9 @@
1
1
  # pi-smart-compact
2
2
 
3
- [![CI](https://github.com/alpertarhan/pi-smart-compact/actions/workflows/ci.yml/badge.svg)](https://github.com/alpertarhan/pi-smart-compact/actions/workflows/ci.yml)
4
- [![npm version](https://img.shields.io/npm/v/pi-smart-compact.svg)](https://www.npmjs.com/package/pi-smart-compact)
5
- [![npm downloads](https://img.shields.io/npm/dm/pi-smart-compact.svg)](https://www.npmjs.com/package/pi-smart-compact)
6
- [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](./LICENSE)
7
- [![Pi extension](https://img.shields.io/badge/Pi-extension-6f42c1)](https://github.com/earendil-works/pi)
3
+ [CI](https://github.com/alpertarhan/pi-smart-compact/actions/workflows/ci.yml) · [npm](https://www.npmjs.com/package/pi-smart-compact) · [MIT License](./LICENSE) · [Pi extension](https://github.com/earendil-works/pi)
8
4
 
9
5
  <p align="center">
10
- <img src="./docs/assets/pi-smart-compact.png" alt="pi-smart-compact" width="760" />
6
+ <img src="./docs/assets/pi-smart-compact.png" alt="pi-smart-compact" width="420" />
11
7
  </p>
12
8
 
13
9
  > Verification-oriented smart compaction for the [Pi Coding Agent](https://github.com/earendil-works/pi-coding-agent).
@@ -390,8 +386,6 @@ Build output is published from `dist/`. Pull requests are expected to pass the s
390
386
  - [`SECURITY.md`](./SECURITY.md) — vulnerability reporting and data-handling notes
391
387
  - [`SUPPORT.md`](./SUPPORT.md) — where to ask for help
392
388
  - [`docs/RELEASE.md`](./docs/RELEASE.md) — release checklist
393
- - [`ROADMAP.md`](./ROADMAP.md) — current priorities
394
- - [`DEVPLAN.md`](./DEVPLAN.md) — archived implementation plan
395
389
 
396
390
  ---
397
391
 
@@ -2,7 +2,7 @@
2
2
  * Constants, prompts, and profile defaults.
3
3
  */
4
4
  import type { CompressionProfile, ProfileConfig } from "./types.ts";
5
- export declare const VERSION = "7.13.1";
5
+ export declare const VERSION = "7.13.2";
6
6
  export declare const CHARS_PER_TOKEN = 3.8;
7
7
  export declare const COMPACT_SYSTEM_PREFIX: string;
8
8
  export declare const PROFILES: Record<CompressionProfile, ProfileConfig>;
package/dist/index.js CHANGED
@@ -16,7 +16,7 @@ var __export = (target, all) => {
16
16
  var __esm = (fn, res) => () => (fn && (res = fn(fn = 0)), res);
17
17
 
18
18
  // src/constants.ts
19
- var VERSION = "7.13.1", CHARS_PER_TOKEN = 3.8, COMPACT_SYSTEM_PREFIX, PROFILES, DEFAULT_CONFIG, NO_OP_RE, SHIFT_RE, CHOICE_RE, SINGLE_PASS_PREFIX, SINGLE_PASS_SUFFIX = `
19
+ var VERSION = "7.13.2", CHARS_PER_TOKEN = 3.8, COMPACT_SYSTEM_PREFIX, PROFILES, DEFAULT_CONFIG, NO_OP_RE, SHIFT_RE, CHOICE_RE, SINGLE_PASS_PREFIX, SINGLE_PASS_SUFFIX = `
20
20
  {PREV_CONTEXT}
21
21
 
22
22
  {EXTRACTION_CONTEXT}
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pi-smart-compact",
3
- "version": "7.13.1",
3
+ "version": "7.13.2",
4
4
  "description": "Verification-oriented smart compaction extension for Pi Coding Agent — deterministic extraction, exploration, synthesis, verification, metrics, and safety checks.",
5
5
  "packageManager": "bun@1.3.14",
6
6
  "license": "MIT",