@kujolang/paperclip 0.1.4 → 0.1.5

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,9 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.1.5 - 2026-09-02
4
+
5
+ - Replace the temporary lettermark in the Paperclip workspace with the official adaptive Kujo SVG from kujolang.ai.
6
+
3
7
  ## 0.1.4 - 2026-09-02
4
8
 
5
9
  - Show Kujo automatically in Paperclip's current issue view while keeping the shared detail tab for project, issue, and run pages.
package/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # Kujo for Paperclip
2
2
 
3
- [![Version](https://img.shields.io/badge/version-0.1.4-black)](https://github.com/kujolang/paperclip/releases/tag/v0.1.4)
3
+ [![Version](https://img.shields.io/badge/version-0.1.5-black)](https://github.com/kujolang/paperclip/releases/tag/v0.1.5)
4
4
  [![License](https://img.shields.io/badge/license-MIT-lightgrey)](LICENSE)
5
5
  [![built with Kujo](https://img.shields.io/badge/built%20with-Kujo-white.svg)](https://github.com/kujolang/kujo)
6
6
 
package/VERSION CHANGED
@@ -1 +1 @@
1
- 0.1.4
1
+ 0.1.5
package/dist/manifest.js CHANGED
@@ -14527,7 +14527,7 @@ var DEFAULT_LIMITS = {
14527
14527
  maxInputLogBytes: 2e5,
14528
14528
  maxContextFileBytes: 2e3
14529
14529
  };
14530
- var PLUGIN_VERSION = "0.1.4";
14530
+ var PLUGIN_VERSION = "0.1.5";
14531
14531
  var MINIMUM_HOST_VERSION = "0.0.0";
14532
14532
 
14533
14533
  // src/config/schema.ts
package/dist/ui/index.js CHANGED
@@ -110,19 +110,29 @@ var eyebrow = {
110
110
  };
111
111
  var muted = { color: colors.muted, fontSize: 13, lineHeight: 1.5 };
112
112
  function KujoMark() {
113
- return /* @__PURE__ */ jsx("div", { "aria-hidden": "true", style: {
114
- alignItems: "center",
115
- background: colors.ink,
116
- borderRadius: 11,
117
- color: colors.canvas,
118
- display: "flex",
119
- fontSize: 15,
120
- fontWeight: 800,
121
- height: 42,
122
- justifyContent: "center",
123
- letterSpacing: "-0.04em",
124
- width: 42
125
- }, children: "K" });
113
+ return /* @__PURE__ */ jsx(
114
+ "svg",
115
+ {
116
+ "aria-label": "Kujo logo",
117
+ role: "img",
118
+ viewBox: "0 0 1527 1536",
119
+ style: {
120
+ color: colors.ink,
121
+ display: "block",
122
+ flex: "0 0 auto",
123
+ height: 42,
124
+ width: 42
125
+ },
126
+ children: /* @__PURE__ */ jsx(
127
+ "path",
128
+ {
129
+ fill: "currentColor",
130
+ fillRule: "evenodd",
131
+ d: "M0 0 H1527 V1536 H0 Z M178 234 L593 234 L593 700 L597 699 L1008 235 L1350 234 L1332 258 L594 1080 L592 1350 L294 1349 L293 427 L281 361 L260 310 L244 287 L222 264 L178 234 Z M1006 721 L1036 746 L1078 789 L1118 839 L1153 894 L1181 950 L1199 997 L1213 1043 L1225 1101 L1232 1157 L1233 1234 L1222 1328 L1208 1385 L1187 1445 L1159 1503 L1139 1536 L1038 1536 L1036 1455 L1025 1383 L1002 1304 L969 1231 L930 1169 L879 1108 L821 1056 L749 1009 L1006 721 Z M1010 805 L965 854 L962 862 L1011 911 L1055 969 L1094 1036 L1120 1097 L1139 1159 L1153 1232 L1157 1275 L1155 1361 L1171 1284 L1176 1221 L1171 1129 L1157 1056 L1132 981 L1100 917 L1046 841 L1010 805 Z"
132
+ }
133
+ )
134
+ }
135
+ );
126
136
  }
127
137
  function ActionButton({ children, disabled, onClick, tone = "primary" }) {
128
138
  const style = tone === "primary" ? primaryButton : tone === "danger" ? dangerButton : secondaryButton;
package/dist/worker.js CHANGED
@@ -28710,7 +28710,7 @@ var CONTEXT_BUDGETS = {
28710
28710
  focused: 16e3,
28711
28711
  broad: 4e4
28712
28712
  };
28713
- var PLUGIN_VERSION = "0.1.4";
28713
+ var PLUGIN_VERSION = "0.1.5";
28714
28714
  var PAPERCLIP_API_VERSION = 1;
28715
28715
 
28716
28716
  // src/config/schema.ts
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kujolang/paperclip",
3
- "version": "0.1.4",
3
+ "version": "0.1.5",
4
4
  "description": "Make Paperclip agent work easier to scope, review, reproduce, and verify.",
5
5
  "license": "MIT",
6
6
  "homepage": "https://github.com/kujolang/paperclip#readme",