agentboot 0.2.0 → 0.3.1

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.
@@ -0,0 +1,47 @@
1
+ {
2
+ "name": "website",
3
+ "version": "0.0.0",
4
+ "private": true,
5
+ "scripts": {
6
+ "docusaurus": "docusaurus",
7
+ "start": "docusaurus start",
8
+ "build": "docusaurus build",
9
+ "swizzle": "docusaurus swizzle",
10
+ "deploy": "docusaurus deploy",
11
+ "clear": "docusaurus clear",
12
+ "serve": "docusaurus serve",
13
+ "write-translations": "docusaurus write-translations",
14
+ "write-heading-ids": "docusaurus write-heading-ids",
15
+ "typecheck": "tsc"
16
+ },
17
+ "dependencies": {
18
+ "@docusaurus/core": "3.9.2",
19
+ "@docusaurus/preset-classic": "3.9.2",
20
+ "@mdx-js/react": "^3.0.0",
21
+ "clsx": "^2.0.0",
22
+ "prism-react-renderer": "^2.3.0",
23
+ "react": "^19.0.0",
24
+ "react-dom": "^19.0.0"
25
+ },
26
+ "devDependencies": {
27
+ "@docusaurus/module-type-aliases": "3.9.2",
28
+ "@docusaurus/tsconfig": "3.9.2",
29
+ "@docusaurus/types": "3.9.2",
30
+ "typescript": "~5.6.2"
31
+ },
32
+ "browserslist": {
33
+ "production": [
34
+ ">0.5%",
35
+ "not dead",
36
+ "not op_mini all"
37
+ ],
38
+ "development": [
39
+ "last 3 chrome version",
40
+ "last 3 firefox version",
41
+ "last 5 safari version"
42
+ ]
43
+ },
44
+ "engines": {
45
+ "node": ">=20.0"
46
+ }
47
+ }
@@ -0,0 +1,53 @@
1
+ import type {SidebarsConfig} from '@docusaurus/plugin-content-docs';
2
+
3
+ const sidebars: SidebarsConfig = {
4
+ docsSidebar: [
5
+ {
6
+ type: 'category',
7
+ label: 'Getting Started',
8
+ collapsed: false,
9
+ items: [
10
+ 'getting-started',
11
+ 'concepts',
12
+ 'configuration',
13
+ ],
14
+ },
15
+ {
16
+ type: 'category',
17
+ label: 'Guides',
18
+ items: [
19
+ 'extending',
20
+ 'cli-reference',
21
+ 'prompt-guide',
22
+ 'model-selection',
23
+ ],
24
+ },
25
+ {
26
+ type: 'category',
27
+ label: 'For Organizations',
28
+ items: [
29
+ 'delivery-methods',
30
+ 'org-connection',
31
+ 'privacy',
32
+ ],
33
+ },
34
+ {
35
+ type: 'category',
36
+ label: 'Community',
37
+ items: [
38
+ 'marketplace',
39
+ 'roadmap',
40
+ ],
41
+ },
42
+ {
43
+ type: 'category',
44
+ label: 'Reference',
45
+ items: [
46
+ 'glossary',
47
+ 'troubleshooting',
48
+ ],
49
+ },
50
+ ],
51
+ };
52
+
53
+ export default sidebars;
@@ -0,0 +1,23 @@
1
+ :root {
2
+ --ifm-color-primary: #2563eb;
3
+ --ifm-color-primary-dark: #1d4ed8;
4
+ --ifm-color-primary-darker: #1e40af;
5
+ --ifm-color-primary-darkest: #1e3a8a;
6
+ --ifm-color-primary-light: #3b82f6;
7
+ --ifm-color-primary-lighter: #60a5fa;
8
+ --ifm-color-primary-lightest: #93c5fd;
9
+ --ifm-font-family-base: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
10
+ --ifm-code-font-size: 95%;
11
+ --docusaurus-highlighted-code-line-bg: rgba(0, 0, 0, 0.1);
12
+ }
13
+
14
+ [data-theme='dark'] {
15
+ --ifm-color-primary: #3b82f6;
16
+ --ifm-color-primary-dark: #2563eb;
17
+ --ifm-color-primary-darker: #1d4ed8;
18
+ --ifm-color-primary-darkest: #1e40af;
19
+ --ifm-color-primary-light: #60a5fa;
20
+ --ifm-color-primary-lighter: #93c5fd;
21
+ --ifm-color-primary-lightest: #bfdbfe;
22
+ --docusaurus-highlighted-code-line-bg: rgba(0, 0, 0, 0.3);
23
+ }
@@ -0,0 +1,23 @@
1
+ /**
2
+ * CSS files with the .module.css suffix will be treated as CSS modules
3
+ * and scoped locally.
4
+ */
5
+
6
+ .heroBanner {
7
+ padding: 4rem 0;
8
+ text-align: center;
9
+ position: relative;
10
+ overflow: hidden;
11
+ }
12
+
13
+ @media screen and (max-width: 996px) {
14
+ .heroBanner {
15
+ padding: 2rem;
16
+ }
17
+ }
18
+
19
+ .buttons {
20
+ display: flex;
21
+ align-items: center;
22
+ justify-content: center;
23
+ }
@@ -0,0 +1,125 @@
1
+ import React from 'react';
2
+ import Link from '@docusaurus/Link';
3
+ import useDocusaurusContext from '@docusaurus/useDocusaurusContext';
4
+ import Layout from '@theme/Layout';
5
+
6
+ function Hero() {
7
+ const {siteConfig} = useDocusaurusContext();
8
+ return (
9
+ <header style={{
10
+ padding: '4rem 2rem',
11
+ textAlign: 'center',
12
+ background: 'var(--ifm-background-surface-color)',
13
+ }}>
14
+ <h1 style={{fontSize: '3rem', marginBottom: '1rem'}}>
15
+ {siteConfig.title}
16
+ </h1>
17
+ <p style={{fontSize: '1.4rem', color: 'var(--ifm-color-emphasis-700)', maxWidth: '640px', margin: '0 auto 2rem'}}>
18
+ {siteConfig.tagline}
19
+ </p>
20
+ <div style={{display: 'flex', gap: '1rem', justifyContent: 'center', flexWrap: 'wrap'}}>
21
+ <Link
22
+ className="button button--primary button--lg"
23
+ to="/docs/getting-started">
24
+ Get Started
25
+ </Link>
26
+ <Link
27
+ className="button button--secondary button--lg"
28
+ to="/docs/concepts">
29
+ Core Concepts
30
+ </Link>
31
+ <Link
32
+ className="button button--outline button--lg"
33
+ href="https://github.com/agentboot-dev/agentboot">
34
+ GitHub
35
+ </Link>
36
+ </div>
37
+ </header>
38
+ );
39
+ }
40
+
41
+ function Feature({title, description}: {title: string; description: string}) {
42
+ return (
43
+ <div style={{flex: '1 1 280px', padding: '1.5rem'}}>
44
+ <h3>{title}</h3>
45
+ <p style={{color: 'var(--ifm-color-emphasis-700)'}}>{description}</p>
46
+ </div>
47
+ );
48
+ }
49
+
50
+ function Features() {
51
+ return (
52
+ <section style={{padding: '3rem 2rem', maxWidth: '960px', margin: '0 auto'}}>
53
+ <div style={{display: 'flex', flexWrap: 'wrap', gap: '1rem'}}>
54
+ <Feature
55
+ title="Build Once, Deploy Everywhere"
56
+ description="Compile AI agent personas from traits, instructions, and gotchas. Distribute to every repo in your org via a single build step."
57
+ />
58
+ <Feature
59
+ title="Multi-Platform Output"
60
+ description="Generate native output for Claude Code (.claude/), GitHub Copilot (.github/), and agentskills.io format. One source, all platforms."
61
+ />
62
+ <Feature
63
+ title="Governance Without Friction"
64
+ description="Scope hierarchy (org > group > team > repo) lets you enforce compliance centrally while teams customize locally."
65
+ />
66
+ </div>
67
+ <div style={{display: 'flex', flexWrap: 'wrap', gap: '1rem', marginTop: '1rem'}}>
68
+ <Feature
69
+ title="Privacy by Design"
70
+ description="Three-tier privacy model. Raw prompts never leave the developer's machine. Telemetry is anonymized and opt-in."
71
+ />
72
+ <Feature
73
+ title="Plugin Distribution"
74
+ description="Export personas as Claude Code plugins. Publish to private or public marketplaces. Install with one command."
75
+ />
76
+ <Feature
77
+ title="Convention Over Configuration"
78
+ description="Sensible defaults for everything. Edit one config file. The Spring Boot of AI agent governance."
79
+ />
80
+ </div>
81
+ </section>
82
+ );
83
+ }
84
+
85
+ function QuickStart() {
86
+ return (
87
+ <section style={{
88
+ padding: '3rem 2rem',
89
+ background: 'var(--ifm-background-surface-color)',
90
+ borderTop: '1px solid var(--ifm-color-emphasis-200)',
91
+ }}>
92
+ <div style={{maxWidth: '640px', margin: '0 auto'}}>
93
+ <h2 style={{textAlign: 'center', marginBottom: '1.5rem'}}>Quick Start</h2>
94
+ <pre style={{
95
+ padding: '1.5rem',
96
+ borderRadius: '8px',
97
+ fontSize: '0.95rem',
98
+ lineHeight: '1.6',
99
+ }}>
100
+ {`npx agentboot setup # scaffold config
101
+ agentboot build # compile personas
102
+ agentboot sync # distribute to repos`}
103
+ </pre>
104
+ <p style={{textAlign: 'center', marginTop: '1.5rem'}}>
105
+ <Link to="/docs/getting-started">
106
+ Full getting started guide &rarr;
107
+ </Link>
108
+ </p>
109
+ </div>
110
+ </section>
111
+ );
112
+ }
113
+
114
+ export default function Home(): React.JSX.Element {
115
+ const {siteConfig} = useDocusaurusContext();
116
+ return (
117
+ <Layout
118
+ title={siteConfig.title}
119
+ description={siteConfig.tagline}>
120
+ <Hero />
121
+ <Features />
122
+ <QuickStart />
123
+ </Layout>
124
+ );
125
+ }
File without changes
@@ -0,0 +1 @@
1
+ agentboot.dev
Binary file
@@ -0,0 +1 @@
1
+ <svg width="200" height="200" viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><path fill="#FFF" d="M99 52h84v34H99z"/><path d="M23 163c-7.398 0-13.843-4.027-17.303-10A19.886 19.886 0 0 0 3 163c0 11.046 8.954 20 20 20h20v-20H23z" fill="#3ECC5F"/><path d="M112.98 57.376L183 53V43c0-11.046-8.954-20-20-20H73l-2.5-4.33c-1.112-1.925-3.889-1.925-5 0L63 23l-2.5-4.33c-1.111-1.925-3.889-1.925-5 0L53 23l-2.5-4.33c-1.111-1.925-3.889-1.925-5 0L43 23c-.022 0-.042.003-.065.003l-4.142-4.141c-1.57-1.571-4.252-.853-4.828 1.294l-1.369 5.104-5.192-1.392c-2.148-.575-4.111 1.389-3.535 3.536l1.39 5.193-5.102 1.367c-2.148.576-2.867 3.259-1.296 4.83l4.142 4.142c0 .021-.003.042-.003.064l-4.33 2.5c-1.925 1.111-1.925 3.889 0 5L23 53l-4.33 2.5c-1.925 1.111-1.925 3.889 0 5L23 63l-4.33 2.5c-1.925 1.111-1.925 3.889 0 5L23 73l-4.33 2.5c-1.925 1.111-1.925 3.889 0 5L23 83l-4.33 2.5c-1.925 1.111-1.925 3.889 0 5L23 93l-4.33 2.5c-1.925 1.111-1.925 3.889 0 5L23 103l-4.33 2.5c-1.925 1.111-1.925 3.889 0 5L23 113l-4.33 2.5c-1.925 1.111-1.925 3.889 0 5L23 123l-4.33 2.5c-1.925 1.111-1.925 3.889 0 5L23 133l-4.33 2.5c-1.925 1.111-1.925 3.889 0 5L23 143l-4.33 2.5c-1.925 1.111-1.925 3.889 0 5L23 153l-4.33 2.5c-1.925 1.111-1.925 3.889 0 5L23 163c0 11.046 8.954 20 20 20h120c11.046 0 20-8.954 20-20V83l-70.02-4.376A10.645 10.645 0 0 1 103 68c0-5.621 4.37-10.273 9.98-10.624" fill="#3ECC5F"/><path fill="#3ECC5F" d="M143 183h30v-40h-30z"/><path d="M193 158c-.219 0-.428.037-.639.064-.038-.15-.074-.301-.116-.451A5 5 0 0 0 190.32 148a4.96 4.96 0 0 0-3.016 1.036 26.531 26.531 0 0 0-.335-.336 4.955 4.955 0 0 0 1.011-2.987 5 5 0 0 0-9.599-1.959c-.148-.042-.297-.077-.445-.115.027-.211.064-.42.064-.639a5 5 0 0 0-5-5 5 5 0 0 0-5 5c0 .219.037.428.064.639-.148.038-.297.073-.445.115a4.998 4.998 0 0 0-9.599 1.959c0 1.125.384 2.151 1.011 2.987-3.717 3.632-6.031 8.693-6.031 14.3 0 11.046 8.954 20 20 20 9.339 0 17.16-6.41 19.361-15.064.211.027.42.064.639.064a5 5 0 0 0 5-5 5 5 0 0 0-5-5" fill="#44D860"/><path fill="#3ECC5F" d="M153 123h30v-20h-30z"/><path d="M193 115.5a2.5 2.5 0 1 0 0-5c-.109 0-.214.019-.319.032-.02-.075-.037-.15-.058-.225a2.501 2.501 0 0 0-.963-4.807c-.569 0-1.088.197-1.508.518a6.653 6.653 0 0 0-.168-.168c.314-.417.506-.931.506-1.494a2.5 2.5 0 0 0-4.8-.979A9.987 9.987 0 0 0 183 103c-5.522 0-10 4.478-10 10s4.478 10 10 10c.934 0 1.833-.138 2.69-.377a2.5 2.5 0 0 0 4.8-.979c0-.563-.192-1.077-.506-1.494.057-.055.113-.111.168-.168.42.321.939.518 1.508.518a2.5 2.5 0 0 0 .963-4.807c.021-.074.038-.15.058-.225.105.013.21.032.319.032" fill="#44D860"/><path d="M63 55.5a2.5 2.5 0 0 1-2.5-2.5c0-4.136-3.364-7.5-7.5-7.5s-7.5 3.364-7.5 7.5a2.5 2.5 0 1 1-5 0c0-6.893 5.607-12.5 12.5-12.5S65.5 46.107 65.5 53a2.5 2.5 0 0 1-2.5 2.5" fill="#000"/><path d="M103 183h60c11.046 0 20-8.954 20-20V93h-60c-11.046 0-20 8.954-20 20v70z" fill="#FFFF50"/><path d="M168.02 124h-50.04a1 1 0 1 1 0-2h50.04a1 1 0 1 1 0 2m0 20h-50.04a1 1 0 1 1 0-2h50.04a1 1 0 1 1 0 2m0 20h-50.04a1 1 0 1 1 0-2h50.04a1 1 0 1 1 0 2m0-49.814h-50.04a1 1 0 1 1 0-2h50.04a1 1 0 1 1 0 2m0 19.814h-50.04a1 1 0 1 1 0-2h50.04a1 1 0 1 1 0 2m0 20h-50.04a1 1 0 1 1 0-2h50.04a1 1 0 1 1 0 2M183 61.611c-.012 0-.022-.006-.034-.005-3.09.105-4.552 3.196-5.842 5.923-1.346 2.85-2.387 4.703-4.093 4.647-1.889-.068-2.969-2.202-4.113-4.46-1.314-2.594-2.814-5.536-5.963-5.426-3.046.104-4.513 2.794-5.807 5.167-1.377 2.528-2.314 4.065-4.121 3.994-1.927-.07-2.951-1.805-4.136-3.813-1.321-2.236-2.848-4.75-5.936-4.664-2.994.103-4.465 2.385-5.763 4.4-1.373 2.13-2.335 3.428-4.165 3.351-1.973-.07-2.992-1.51-4.171-3.177-1.324-1.873-2.816-3.993-5.895-3.89-2.928.1-4.399 1.97-5.696 3.618-1.232 1.564-2.194 2.802-4.229 2.724a1 1 0 0 0-.072 2c3.017.101 4.545-1.8 5.872-3.487 1.177-1.496 2.193-2.787 4.193-2.855 1.926-.082 2.829 1.115 4.195 3.045 1.297 1.834 2.769 3.914 5.731 4.021 3.103.104 4.596-2.215 5.918-4.267 1.182-1.834 2.202-3.417 4.15-3.484 1.793-.067 2.769 1.35 4.145 3.681 1.297 2.197 2.766 4.686 5.787 4.796 3.125.108 4.634-2.62 5.949-5.035 1.139-2.088 2.214-4.06 4.119-4.126 1.793-.042 2.728 1.595 4.111 4.33 1.292 2.553 2.757 5.445 5.825 5.556l.169.003c3.064 0 4.518-3.075 5.805-5.794 1.139-2.41 2.217-4.68 4.067-4.773v-2z" fill="#000"/><path fill="#3ECC5F" d="M83 183h40v-40H83z"/><path d="M143 158c-.219 0-.428.037-.639.064-.038-.15-.074-.301-.116-.451A5 5 0 0 0 140.32 148a4.96 4.96 0 0 0-3.016 1.036 26.531 26.531 0 0 0-.335-.336 4.955 4.955 0 0 0 1.011-2.987 5 5 0 0 0-9.599-1.959c-.148-.042-.297-.077-.445-.115.027-.211.064-.42.064-.639a5 5 0 0 0-5-5 5 5 0 0 0-5 5c0 .219.037.428.064.639-.148.038-.297.073-.445.115a4.998 4.998 0 0 0-9.599 1.959c0 1.125.384 2.151 1.011 2.987-3.717 3.632-6.031 8.693-6.031 14.3 0 11.046 8.954 20 20 20 9.339 0 17.16-6.41 19.361-15.064.211.027.42.064.639.064a5 5 0 0 0 5-5 5 5 0 0 0-5-5" fill="#44D860"/><path fill="#3ECC5F" d="M83 123h40v-20H83z"/><path d="M133 115.5a2.5 2.5 0 1 0 0-5c-.109 0-.214.019-.319.032-.02-.075-.037-.15-.058-.225a2.501 2.501 0 0 0-.963-4.807c-.569 0-1.088.197-1.508.518a6.653 6.653 0 0 0-.168-.168c.314-.417.506-.931.506-1.494a2.5 2.5 0 0 0-4.8-.979A9.987 9.987 0 0 0 123 103c-5.522 0-10 4.478-10 10s4.478 10 10 10c.934 0 1.833-.138 2.69-.377a2.5 2.5 0 0 0 4.8-.979c0-.563-.192-1.077-.506-1.494.057-.055.113-.111.168-.168.42.321.939.518 1.508.518a2.5 2.5 0 0 0 .963-4.807c.021-.074.038-.15.058-.225.105.013.21.032.319.032" fill="#44D860"/><path d="M143 41.75c-.16 0-.33-.02-.49-.05a2.52 2.52 0 0 1-.47-.14c-.15-.06-.29-.14-.431-.23-.13-.09-.259-.2-.38-.31-.109-.12-.219-.24-.309-.38s-.17-.28-.231-.43a2.619 2.619 0 0 1-.189-.96c0-.16.02-.33.05-.49.03-.16.08-.31.139-.47.061-.15.141-.29.231-.43.09-.13.2-.26.309-.38.121-.11.25-.22.38-.31.141-.09.281-.17.431-.23.149-.06.31-.11.47-.14.32-.07.65-.07.98 0 .159.03.32.08.47.14.149.06.29.14.43.23.13.09.259.2.38.31.11.12.22.25.31.38.09.14.17.28.23.43.06.16.11.31.14.47.029.16.05.33.05.49 0 .66-.271 1.31-.73 1.77-.121.11-.25.22-.38.31-.14.09-.281.17-.43.23a2.565 2.565 0 0 1-.96.19m20-1.25c-.66 0-1.3-.27-1.771-.73a3.802 3.802 0 0 1-.309-.38c-.09-.14-.17-.28-.231-.43a2.619 2.619 0 0 1-.189-.96c0-.66.27-1.3.729-1.77.121-.11.25-.22.38-.31.141-.09.281-.17.431-.23.149-.06.31-.11.47-.14.32-.07.66-.07.98 0 .159.03.32.08.47.14.149.06.29.14.43.23.13.09.259.2.38.31.459.47.73 1.11.73 1.77 0 .16-.021.33-.05.49-.03.16-.08.32-.14.47-.07.15-.14.29-.23.43-.09.13-.2.26-.31.38-.121.11-.25.22-.38.31-.14.09-.281.17-.43.23a2.565 2.565 0 0 1-.96.19" fill="#000"/></g></svg>