@companion-ai/feynman 0.2.7 → 0.2.8
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/logo.d.mts +3 -0
- package/logo.mjs +12 -0
- package/package.json +3 -1
package/logo.d.mts
ADDED
package/logo.mjs
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
export const FEYNMAN_ASCII_LOGO = [
|
|
2
|
+
"███████╗███████╗██╗ ██╗███╗ ██╗███╗ ███╗ █████╗ ███╗ ██╗",
|
|
3
|
+
"██╔════╝██╔════╝╚██╗ ██╔╝████╗ ██║████╗ ████║██╔══██╗████╗ ██║",
|
|
4
|
+
"█████╗ █████╗ ╚████╔╝ ██╔██╗ ██║██╔████╔██║███████║██╔██╗ ██║",
|
|
5
|
+
"██╔══╝ ██╔══╝ ╚██╔╝ ██║╚██╗██║██║╚██╔╝██║██╔══██║██║╚██╗██║",
|
|
6
|
+
"██║ ███████╗ ██║ ██║ ╚████║██║ ╚═╝ ██║██║ ██║██║ ╚████║",
|
|
7
|
+
"╚═╝ ╚══════╝ ╚═╝ ╚═╝ ╚═══╝╚═╝ ╚═╝╚═╝ ╚═╝╚═╝ ╚═══╝",
|
|
8
|
+
];
|
|
9
|
+
|
|
10
|
+
export const FEYNMAN_ASCII_LOGO_TEXT = FEYNMAN_ASCII_LOGO.join("\n");
|
|
11
|
+
|
|
12
|
+
export const FEYNMAN_LOGO_HTML = `<link href="https://fonts.googleapis.com/css2?family=Silkscreen:wght@700&display=swap" rel="stylesheet"><span style="font-family:'Silkscreen',cursive;font-size:48px;font-weight:700;color:#10b981">feynman</span>`;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@companion-ai/feynman",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.8",
|
|
4
4
|
"description": "Research-first CLI agent built on Pi and alphaXiv",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"engines": {
|
|
@@ -19,6 +19,8 @@
|
|
|
19
19
|
".feynman/themes/",
|
|
20
20
|
"extensions/",
|
|
21
21
|
"prompts/",
|
|
22
|
+
"logo.mjs",
|
|
23
|
+
"logo.d.mts",
|
|
22
24
|
"scripts/",
|
|
23
25
|
"skills/",
|
|
24
26
|
"AGENTS.md",
|