Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 19 additions & 0 deletions docs/astro.config.mjs
Original file line number Diff line number Diff line change
@@ -1,13 +1,32 @@
// @ts-check
import { defineConfig } from 'astro/config';
import starlight from '@astrojs/starlight';
import starlightLlmsTxt from 'starlight-llms-txt';

// https://astro.build/config
export default defineConfig({
site: 'https://githubnext.github.io/gh-aw/',
integrations: [
starlight({
title: 'GitHub Agentic Workflows',
social: [{ icon: 'github', label: 'GitHub', href: 'https://github.com/githubnext/gh-aw' }],
plugins: [
starlightLlmsTxt({
description: 'GitHub Agentic Workflows (gh-aw) is a Go-based GitHub CLI extension that enables writing agentic workflows in natural language using markdown files, and running them as GitHub Actions workflows.',
optionalLinks: [
{
label: 'GitHub Repository',
url: 'https://github.com/githubnext/gh-aw',
description: 'Source code and development resources for gh-aw'
},
{
label: 'GitHub CLI Documentation',
url: 'https://cli.github.com/manual/',
description: 'Documentation for the GitHub CLI tool'
}
]
})
],
sidebar: [
{
label: 'Reference',
Expand Down
197 changes: 196 additions & 1 deletion docs/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 3 additions & 2 deletions docs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
"dependencies": {
"@astrojs/starlight": "^0.35.2",
"astro": "^5.6.1",
"sharp": "^0.34.2"
"sharp": "^0.34.2",
"starlight-llms-txt": "^0.6.0"
}
}
}