@felipefontoura/paperclip-adapter-hermes-local-plus 0.1.13 → 0.1.14
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 +6 -0
- package/dist/index.js +3 -3
- package/dist/index.js.map +1 -1
- package/dist/ui/index.js.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/).
|
|
6
6
|
This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## [0.1.14] - 2026-06-12
|
|
9
|
+
|
|
10
|
+
### Fixed
|
|
11
|
+
|
|
12
|
+
- Stale UI labels / hint for `heartbeatTemplateMode`. The "Auto (smart pick from AGENTS.md)" option was describing the v0.1.7-v0.1.11 behaviour that v0.1.12 reverted — Auto now always picks Full unless an explicit Prompt template is set. Updated the option labels and the hint accordingly so the dropdown matches actual runtime behaviour.
|
|
13
|
+
|
|
8
14
|
## [0.1.13] - 2026-06-12
|
|
9
15
|
|
|
10
16
|
### Changed
|
package/dist/index.js
CHANGED
|
@@ -4433,12 +4433,12 @@ async function getConfigSchema() {
|
|
|
4433
4433
|
type: "select",
|
|
4434
4434
|
default: "auto",
|
|
4435
4435
|
options: [
|
|
4436
|
-
{ value: "auto", label: "Auto (
|
|
4437
|
-
{ value: "light", label: "Light (persona drives)" },
|
|
4436
|
+
{ value: "auto", label: "Auto (Full Paperclip workflow)" },
|
|
4437
|
+
{ value: "light", label: "Light (persona drives, no API workflow)" },
|
|
4438
4438
|
{ value: "full", label: "Full (Paperclip workflow)" },
|
|
4439
4439
|
{ value: "custom", label: "Custom (use Prompt template field)" }
|
|
4440
4440
|
],
|
|
4441
|
-
hint: "How the plugin chooses the system prompt template. Auto =
|
|
4441
|
+
hint: "How the plugin chooses the system prompt template. Auto = Full unless the Prompt template field is set. Light strips the Paperclip API workflow boilerplate (issue listing, comment, close) \u2014 the agent then relies purely on AGENTS.md to know what to do, saving ~13k input tokens per wake at the cost of autonomous issue handling. Full always injects the workflow. Custom uses the Prompt template field verbatim. v0.1.7-v0.1.11 had an auto-switch to Light when AGENTS.md was substantive; v0.1.12 reverted that because it silently capped agent autonomy."
|
|
4442
4442
|
},
|
|
4443
4443
|
{
|
|
4444
4444
|
key: "promptTemplate",
|