Fix missing logo.mjs in package files array
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
2
logo.mjs
2
logo.mjs
@@ -9,4 +9,4 @@ export const FEYNMAN_ASCII_LOGO = [
|
|||||||
|
|
||||||
export const FEYNMAN_ASCII_LOGO_TEXT = FEYNMAN_ASCII_LOGO.join("\n");
|
export const FEYNMAN_ASCII_LOGO_TEXT = FEYNMAN_ASCII_LOGO.join("\n");
|
||||||
|
|
||||||
export const FEYNMAN_ASCII_LOGO_HTML = `<pre style="font-size:8px;line-height:1.15;font-weight:700;color:#10b981;font-family:monospace;white-space:pre;margin:0">${FEYNMAN_ASCII_LOGO_TEXT}</pre>`;
|
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>`;
|
||||||
|
|||||||
4
package-lock.json
generated
4
package-lock.json
generated
@@ -1,12 +1,12 @@
|
|||||||
{
|
{
|
||||||
"name": "@companion-ai/feynman",
|
"name": "@companion-ai/feynman",
|
||||||
"version": "0.2.7",
|
"version": "0.2.8",
|
||||||
"lockfileVersion": 3,
|
"lockfileVersion": 3,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"packages": {
|
"packages": {
|
||||||
"": {
|
"": {
|
||||||
"name": "@companion-ai/feynman",
|
"name": "@companion-ai/feynman",
|
||||||
"version": "0.2.7",
|
"version": "0.2.8",
|
||||||
"hasInstallScript": true,
|
"hasInstallScript": true,
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@companion-ai/alpha-hub": "^0.1.2",
|
"@companion-ai/alpha-hub": "^0.1.2",
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@companion-ai/feynman",
|
"name": "@companion-ai/feynman",
|
||||||
"version": "0.2.7",
|
"version": "0.2.8",
|
||||||
"description": "Research-first CLI agent built on Pi and alphaXiv",
|
"description": "Research-first CLI agent built on Pi and alphaXiv",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"engines": {
|
"engines": {
|
||||||
@@ -19,6 +19,8 @@
|
|||||||
".feynman/themes/",
|
".feynman/themes/",
|
||||||
"extensions/",
|
"extensions/",
|
||||||
"prompts/",
|
"prompts/",
|
||||||
|
"logo.mjs",
|
||||||
|
"logo.d.mts",
|
||||||
"scripts/",
|
"scripts/",
|
||||||
"skills/",
|
"skills/",
|
||||||
"AGENTS.md",
|
"AGENTS.md",
|
||||||
|
|||||||
@@ -7,20 +7,15 @@ interface Props {
|
|||||||
const { class: className = '', size = 'hero' } = Astro.props;
|
const { class: className = '', size = 'hero' } = Astro.props;
|
||||||
|
|
||||||
const sizeClasses = size === 'nav'
|
const sizeClasses = size === 'nav'
|
||||||
? 'text-[4px] sm:text-[5px]'
|
? 'text-lg'
|
||||||
: 'text-[6px] sm:text-[8px] md:text-[10px]';
|
: 'text-4xl sm:text-5xl md:text-6xl';
|
||||||
---
|
---
|
||||||
|
|
||||||
<pre
|
<span
|
||||||
class:list={[
|
class:list={[
|
||||||
'font-mono text-accent font-bold leading-[1.15] m-0 p-0 inline-block',
|
"font-['Silkscreen'] text-accent font-bold tracking-tight inline-block",
|
||||||
sizeClasses,
|
sizeClasses,
|
||||||
className,
|
className,
|
||||||
]}
|
]}
|
||||||
aria-label="Feynman"
|
aria-label="Feynman"
|
||||||
>███████╗███████╗██╗ ██╗███╗ ██╗███╗ ███╗ █████╗ ███╗ ██╗
|
>feynman</span>
|
||||||
██╔════╝██╔════╝╚██╗ ██╔╝████╗ ██║████╗ ████║██╔══██╗████╗ ██║
|
|
||||||
█████╗ █████╗ ╚████╔╝ ██╔██╗ ██║██╔████╔██║███████║██╔██╗ ██║
|
|
||||||
██╔══╝ ██╔══╝ ╚██╔╝ ██║╚██╗██║██║╚██╔╝██║██╔══██║██║╚██╗██║
|
|
||||||
██║ ███████╗ ██║ ██║ ╚████║██║ ╚═╝ ██║██║ ██║██║ ╚████║
|
|
||||||
╚═╝ ╚══════╝ ╚═╝ ╚═╝ ╚═══╝╚═╝ ╚═╝╚═╝ ╚═╝╚═╝ ╚═══╝</pre>
|
|
||||||
|
|||||||
@@ -20,6 +20,9 @@ const { title, description = 'Research-first AI agent', active = 'home' } = Astr
|
|||||||
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||||
<meta name="description" content={description} />
|
<meta name="description" content={description} />
|
||||||
<title>{title}</title>
|
<title>{title}</title>
|
||||||
|
<link rel="preconnect" href="https://fonts.googleapis.com" />
|
||||||
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
|
||||||
|
<link href="https://fonts.googleapis.com/css2?family=Silkscreen:wght@400;700&display=swap" rel="stylesheet" />
|
||||||
<ViewTransitions fallback="none" />
|
<ViewTransitions fallback="none" />
|
||||||
<script is:inline>
|
<script is:inline>
|
||||||
(function() {
|
(function() {
|
||||||
|
|||||||
@@ -1,12 +1,10 @@
|
|||||||
---
|
---
|
||||||
import Base from '../layouts/Base.astro';
|
import Base from '../layouts/Base.astro';
|
||||||
import AsciiLogo from '../components/AsciiLogo.astro';
|
|
||||||
---
|
---
|
||||||
|
|
||||||
<Base title="Feynman — The open source AI research agent" active="home">
|
<Base title="Feynman — The open source AI research agent" active="home">
|
||||||
<section class="text-center pt-24 pb-20 px-6">
|
<section class="text-center pt-24 pb-20 px-6">
|
||||||
<div class="max-w-2xl mx-auto">
|
<div class="max-w-2xl mx-auto">
|
||||||
<AsciiLogo size="hero" class="mb-8" />
|
|
||||||
<h1 class="text-5xl sm:text-6xl font-bold tracking-tight mb-6" style="text-wrap: balance">The open source AI research agent</h1>
|
<h1 class="text-5xl sm:text-6xl font-bold tracking-tight mb-6" style="text-wrap: balance">The open source AI research agent</h1>
|
||||||
<p class="text-lg text-text-muted mb-10 leading-relaxed" style="text-wrap: pretty">Investigate topics, write papers, run experiments, review research, audit codebases — every output cited and source-grounded</p>
|
<p class="text-lg text-text-muted mb-10 leading-relaxed" style="text-wrap: pretty">Investigate topics, write papers, run experiments, review research, audit codebases — every output cited and source-grounded</p>
|
||||||
<div class="inline-flex items-center gap-3 bg-surface rounded-lg px-5 py-3 mb-8 font-mono text-sm">
|
<div class="inline-flex items-center gap-3 bg-surface rounded-lg px-5 py-3 mb-8 font-mono text-sm">
|
||||||
|
|||||||
Reference in New Issue
Block a user