Skip to content

Commit 2f0859f

Browse files
committed
Launch Agentic Web
0 parents  commit 2f0859f

42 files changed

Lines changed: 7734 additions & 0 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.gitignore

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
# build output
2+
dist/
3+
# generated types
4+
.astro/
5+
6+
# dependencies
7+
node_modules/
8+
9+
# logs
10+
npm-debug.log*
11+
yarn-debug.log*
12+
yarn-error.log*
13+
pnpm-debug.log*
14+
15+
16+
# environment variables
17+
.env
18+
.env.production
19+
20+
# macOS-specific files
21+
.DS_Store
22+
23+
# jetbrains setting folder
24+
.idea/
25+
26+
# custom prompts and agent configuration
27+
prompts/
28+
AGENTS.md

.vscode/extensions.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"recommendations": ["astro-build.astro-vscode", "unifiedjs.vscode-mdx"],
3+
"unwantedRecommendations": []
4+
}

.vscode/launch.json

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"version": "0.2.0",
3+
"configurations": [
4+
{
5+
"command": "./node_modules/.bin/astro dev",
6+
"name": "Development server",
7+
"request": "launch",
8+
"type": "node-terminal"
9+
}
10+
]
11+
}

README.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# Agentic Web
2+
3+
A field journal for the next internet: AI agents, autonomous work, programmable reputation, and new systems for creating and capturing value.
4+
5+
Built with [Astro](https://astro.build) using the Astro Paper template.
6+
7+
## Commands
8+
9+
| Command | Action |
10+
|---------|--------|
11+
| `npm install` | Install dependencies |
12+
| `npm run dev` | Start local dev server |
13+
| `npm run build` | Build production site to `./dist/` |
14+
| `npm run preview` | Preview build locally |
15+
16+
## Deploy
17+
18+
Static site — output to `dist/`. Deploy to Cloudflare Pages or any static host.

astro.config.mjs

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
// @ts-check
2+
3+
import mdx from '@astrojs/mdx';
4+
import sitemap from '@astrojs/sitemap';
5+
import { defineConfig, fontProviders } from 'astro/config';
6+
import remarkMath from 'remark-math';
7+
import rehypeKatex from 'rehype-katex';
8+
9+
export default defineConfig({
10+
site: 'https://agenticweb.blog',
11+
integrations: [mdx(), sitemap()],
12+
markdown: {
13+
remarkPlugins: [remarkMath],
14+
rehypePlugins: [rehypeKatex],
15+
},
16+
fonts: [
17+
{
18+
provider: fontProviders.local(),
19+
name: 'Atkinson',
20+
cssVariable: '--font-atkinson',
21+
fallbacks: ['sans-serif'],
22+
options: {
23+
variants: [
24+
{
25+
src: ['./src/assets/fonts/atkinson-regular.woff'],
26+
weight: 400,
27+
style: 'normal',
28+
display: 'swap',
29+
},
30+
{
31+
src: ['./src/assets/fonts/atkinson-bold.woff'],
32+
weight: 700,
33+
style: 'normal',
34+
display: 'swap',
35+
},
36+
],
37+
},
38+
},
39+
],
40+
});

0 commit comments

Comments
 (0)