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
106 changes: 106 additions & 0 deletions website/codehike-theme.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,106 @@
{
"name": "a3s-code",
"type": "dark",
"colors": {
"editor.background": "#0b0f14",
"editor.foreground": "#d4d9e2",
"editorLineNumber.foreground": "#414a58",
"editorLineNumber.activeForeground": "#8e9aac",
"editor.selectionBackground": "#243854"
},
"tokenColors": [
{
"scope": ["comment", "punctuation.definition.comment"],
"settings": {
"foreground": "#657181",
"fontStyle": "italic"
}
},
{
"scope": [
"keyword",
"storage",
"storage.type",
"storage.modifier",
"keyword.control",
"keyword.operator.word"
],
"settings": {
"foreground": "#8fb8f8"
}
},
{
"scope": [
"entity.name.function",
"support.function",
"meta.function-call",
"variable.function"
],
"settings": {
"foreground": "#dfb978"
}
},
{
"scope": [
"entity.name.type",
"entity.name.class",
"support.type",
"support.class",
"entity.name.namespace"
],
"settings": {
"foreground": "#bda4dd"
}
},
{
"scope": [
"entity.name.function.decorator",
"meta.function.decorator",
"punctuation.definition.decorator"
],
"settings": {
"foreground": "#c8a5ee"
}
},
{
"scope": ["string", "string.quoted", "string.template"],
"settings": {
"foreground": "#8fc4a4"
}
},
{
"scope": [
"constant.numeric",
"constant.language",
"constant.character",
"constant.other"
],
"settings": {
"foreground": "#d89573"
}
},
{
"scope": [
"variable.parameter",
"variable.other",
"meta.object-literal.key",
"meta.mapping.key"
],
"settings": {
"foreground": "#cfd5df"
}
},
{
"scope": ["punctuation", "meta.brace", "meta.delimiter"],
"settings": {
"foreground": "#7c8796"
}
},
{
"scope": ["keyword.operator", "operator"],
"settings": {
"foreground": "#7fa6b9"
}
}
]
}
7 changes: 1 addition & 6 deletions website/docs/v6/en/_nav.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,7 @@
{
"text": "Docs",
"link": "/guide/",
"activeMatch": "^/guide/(?!examples/|components/)"
},
{
"text": "Components",
"link": "/guide/components/",
"activeMatch": "^/guide/components/"
"activeMatch": "^/guide/(?!examples/)"
},
{
"text": "Examples",
Expand Down
7 changes: 3 additions & 4 deletions website/docs/v6/en/api/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ truth for package versions and release status.

| Entry | Package or command | Documentation | Use it for |
| -------- | ------------------ | -------------------------------------------------- | -------------------------------------------------- |
| Terminal | `a3s code` | [A3S CLI](https://github.com/A3S-Lab/CLI) | Run a coding agent directly in your terminal |
| Terminal | `a3s code` | [A3S CLI](https://github.com/A3S-Lab/a3s) | Run a coding agent directly in your terminal |
| Rust | `a3s-code-core` | [docs.rs](https://docs.rs/a3s-code-core) | Use the complete runtime API or extension traits |
| Node.js | `@a3s-lab/code` | [npm](https://www.npmjs.com/package/@a3s-lab/code) | Subscribe to async events in a Node.js application |
| Python | `a3s-code` | [PyPI](https://pypi.org/project/a3s-code/) | Use synchronous or asynchronous Python APIs |
Expand Down Expand Up @@ -43,6 +43,5 @@ Start with the [API contract](/guide/api-contract), then continue to

When connecting your own infrastructure, you can replace `LlmClient`,
`ContextProvider`, `MemoryStore`, `SessionStore`, Workspace services, tools,
permission confirmation, hooks, MCP transports, and graph stores. To see how
events reach a UI first, open the
[A3S TUI and A3S Web component docs](/guide/components/).
permission confirmation, hooks, MCP transports, and graph stores. For UI
integration, start with [sessions and event streams](/guide/sessions).
7 changes: 0 additions & 7 deletions website/docs/v6/en/guide/_meta.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,6 @@
[
"index",
"tui",
{
"type": "dir",
"name": "components",
"label": "Components",
"collapsible": true,
"collapsed": false
},
{
"type": "dir",
"name": "examples",
Expand Down
17 changes: 0 additions & 17 deletions website/docs/v6/en/guide/components/_meta.json

This file was deleted.

28 changes: 0 additions & 28 deletions website/docs/v6/en/guide/components/index.mdx

This file was deleted.

1 change: 0 additions & 1 deletion website/docs/v6/en/guide/components/tui/_meta.json

This file was deleted.

20 changes: 0 additions & 20 deletions website/docs/v6/en/guide/components/tui/activity.mdx

This file was deleted.

24 changes: 0 additions & 24 deletions website/docs/v6/en/guide/components/tui/data.mdx

This file was deleted.

30 changes: 0 additions & 30 deletions website/docs/v6/en/guide/components/tui/feedback.mdx

This file was deleted.

21 changes: 0 additions & 21 deletions website/docs/v6/en/guide/components/tui/index.mdx

This file was deleted.

24 changes: 0 additions & 24 deletions website/docs/v6/en/guide/components/tui/input.mdx

This file was deleted.

18 changes: 0 additions & 18 deletions website/docs/v6/en/guide/components/tui/navigation.mdx

This file was deleted.

9 changes: 0 additions & 9 deletions website/docs/v6/en/guide/components/web/_meta.json

This file was deleted.

18 changes: 0 additions & 18 deletions website/docs/v6/en/guide/components/web/coordination.mdx

This file was deleted.

24 changes: 0 additions & 24 deletions website/docs/v6/en/guide/components/web/execution.mdx

This file was deleted.

Loading
Loading