Repository: phoenixframework/vscode-phoenix
Branch: main
Commit: 15af010e7430
Files: 10
Total size: 24.8 KB
Directory structure:
gitextract_ru5omq95/
├── .gitignore
├── .vscode/
│ └── launch.json
├── .vscodeignore
├── CHANGELOG.md
├── LICENSE
├── README.md
├── language-configuration.json
├── package.json
└── syntaxes/
├── elixir-heex.json
└── heex.json
================================================
FILE CONTENTS
================================================
================================================
FILE: .gitignore
================================================
*.vsix
================================================
FILE: .vscode/launch.json
================================================
// A launch configuration that launches the extension inside a new window
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
{
"version": "0.2.0",
"configurations": [
{
"name": "Extension",
"type": "extensionHost",
"request": "launch",
"runtimeExecutable": "${execPath}",
"args": [
"--extensionDevelopmentPath=${workspaceFolder}"
]
}
]
}
================================================
FILE: .vscodeignore
================================================
.vscode/**
.vscode-test/**
.gitignore
vsc-extension-quickstart.md
================================================
FILE: CHANGELOG.md
================================================
# Changelog
## v0.1.3 (2024-12-16)
- Support syntax highlighting for curly brackets in the body
## v0.1.2 (2022-10-04)
- Support for commenting and highlighting of new `<%!-- --%>` EEx comment syntax
## v0.1.1 (2021-10-29)
- Syntax highlight support for slots
## v0.1.0 (2021-08-25)
- Initial release
================================================
FILE: LICENSE
================================================
The MIT License (MIT)
Copyright (c) 2021 Marlus Saraiva
Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
"Software"), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:
The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
================================================
FILE: README.md
================================================
# Phoenix package for VS Code
Syntax highlighting support for Phoenix templates.
## Features
* Support syntax highlighting for `.heex` files
* Extends Elixir's syntax highlighting to support HEEx's syntax inside `~H`
## Emmet Support
To use emmet with `.heex` file extensions, include the options below in your settings:
```json
"emmet.includeLanguages": {
"phoenix-heex": "html"
}
```
## License
Copyright (c) 2021, Marlus Saraiva.
Source code is licensed under the [MIT License](LICENSE).
================================================
FILE: language-configuration.json
================================================
{
"comments": {
"blockComment": ["<%!--", "--%>"]
},
"brackets": [
["<", ">"],
["{", "}"],
["(", ")"],
["[", "]"]
],
"autoClosingPairs": [
["{", "}"],
["[", "]"],
["(", ")"],
["<%", " %>"],
["'", "'"],
["\"", "\""]
],
"surroundingPairs": [
["'", "'"],
["{", "}"],
["[", "]"],
["(", ")"],
["<", ">"],
["%", "%"],
["\"", "\""]
]
}
================================================
FILE: package.json
================================================
{
"name": "phoenix",
"displayName": "Phoenix Framework",
"homepage": "https://www.phoenixframework.org",
"description": "Syntax highlighting support for HEEx",
"version": "0.1.3",
"author": "Marlus Saraiva",
"publisher": "phoenixframework",
"license": "MIT",
"icon": "images/logo.png",
"repository": {
"type": "git",
"url": "https://github.com/phoenixframework/vscode-phoenix.git"
},
"engines": {
"vscode": "^1.25.1"
},
"categories": [
"Programming Languages"
],
"contributes": {
"languages": [
{
"id": "phoenix-heex",
"aliases": [
"HEEx",
"heex"
],
"extensions": [
".heex"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "phoenix-heex",
"scopeName": "source.heex",
"path": "./syntaxes/heex.json"
},
{
"scopeName": "source.elixir.heex",
"path": "./syntaxes/elixir-heex.json",
"injectTo": [
"source.elixir"
],
"embeddedLanguages": {
"text.html.heex": "phoenix-heex"
}
}
]
}
}
================================================
FILE: syntaxes/elixir-heex.json
================================================
{
"injectionSelector": "L:source.elixir -comment -text -string",
"name": "elixir-heex",
"patterns": [
{
"comment": "HEEx sigil with heredoc (double quotes)",
"name": "text.html.heex",
"begin": "\\s?(~H\"\"\")$",
"beginCaptures": {
"0": {
"name": "string.quoted.double.heredoc.elixir"
}
},
"end": "^\\s*(\"\"\"[a-z]*)$",
"endCaptures": {
"0": {
"name": "string.quoted.double.heredoc.elixir"
}
},
"patterns": [
{
"include": "source.heex"
}
]
},
{
"comment": "HEEx sigil with double quotes",
"name": "text.html.heex",
"begin": "~H\\\"",
"beginCaptures": {
"0": {
"name": "string.quoted.double.heredoc.elixir"
}
},
"end": "\\\"[a-z]*",
"endCaptures": {
"0": {
"name": "string.quoted.double.heredoc.elixir"
}
},
"patterns": [
{
"include": "source.heex"
}
]
},
{
"comment": "HEEx sigil with square brackets",
"name": "text.html.heex",
"begin": "~H\\[",
"beginCaptures": {
"0": {
"name": "string.quoted.double.heredoc.elixir"
}
},
"end": "\\][a-z]*",
"endCaptures": {
"0": {
"name": "string.quoted.double.heredoc.elixir"
}
},
"patterns": [
{
"include": "source.heex"
}
]
},
{
"comment": "HEEx sigil with parentheses",
"name": "text.html.heex",
"begin": "~H\\(",
"beginCaptures": {
"0": {
"name": "string.quoted.double.heredoc.elixir"
}
},
"end": "\\)[a-z]*",
"endCaptures": {
"0": {
"name": "string.quoted.double.heredoc.elixir"
}
},
"patterns": [
{
"include": "source.heex"
}
]
},
{
"comment": "HEEx sigil with curly brackets",
"name": "text.html.heex",
"begin": "~H\\{",
"beginCaptures": {
"0": {
"name": "string.quoted.double.heredoc.elixir"
}
},
"end": "\\}[a-z]*",
"endCaptures": {
"0": {
"name": "string.quoted.double.heredoc.elixir"
}
},
"patterns": [
{
"include": "source.heex"
}
]
}
],
"scopeName": "source.elixir.heex"
}
================================================
FILE: syntaxes/heex.json
================================================
{
"name": "heex",
"scopeName": "source.heex",
"fileTypes": ["heex"],
"patterns": [
{
"include": "#doctype"
},
{
"include": "#html-comment"
},
{
"include": "#deprecated-heex-comment"
},
{
"include": "#heex-comment"
},
{
"include": "#heex-multi-line-comment"
},
{
"include": "#elixir-embedded"
},
{
"include": "#slotable"
},
{
"include": "#component"
},
{
"include": "#tag-style"
},
{
"include": "#tag-script"
},
{
"include": "#tag"
},
{
"include": "#interpolation"
}
],
"repository": {
"doctype": {
"begin": "<!(?=(?i:DOCTYPE\\s))",
"beginCaptures": {
"0": {
"name": "punctuation.definition.tag.begin.html"
}
},
"end": ">",
"endCaptures": {
"0": {
"name": "punctuation.definition.tag.end.html"
}
},
"name": "meta.tag.metadata.doctype.html",
"patterns": [
{
"match": "\\G(?i:DOCTYPE)",
"name": "entity.name.tag.html"
},
{
"begin": "\"",
"end": "\"",
"name": "string.quoted.double.html"
},
{
"match": "[^\\s>]+",
"name": "entity.other.attribute-name.html"
}
]
},
"expression": {
"patterns": [
{
"begin": "\\{",
"captures": {
"0": {
"name": "punctuation.section.scope.elixir"
}
},
"end": "\\}",
"patterns": [
{
"include": "#expression"
}
]
},
{
"include": "source.elixir"
}
]
},
"deprecated-heex-comment": {
"begin": "<%+#",
"captures": {
"0": {
"name": "punctuation.definition.comment.heex"
}
},
"end": "%>",
"name": "comment.block.heex"
},
"heex-comment": {
"begin": "<%+ #",
"captures": {
"0": {
"name": "punctuation.definition.comment.heex"
}
},
"end": "%>",
"name": "comment.block.heex"
},
"heex-multi-line-comment": {
"begin": "<%+!--",
"captures": {
"0": {
"name": "punctuation.definition.comment.heex"
}
},
"end": "--%>",
"name": "comment.block.heex"
},
"elixir-embedded": {
"begin": "<%+(?!>)[-=]*",
"captures": {
"0": {
"name": "punctuation.section.embedded.elixir"
}
},
"end": "-?%>",
"name": "source.elixir.embedded",
"patterns": [
{
"captures": {
"1": {
"name": "punctuation.definition.comment.elixir"
}
},
"match": "(#).*?(?=-?%>)",
"name": "comment.line.number-sign.elixir"
},
{
"include": "source.elixir"
}
]
},
"interpolation": {
"patterns": [
{
"begin": "\\{",
"name": "source.elixir.embedded",
"beginCaptures": {
"0": {
"name": "punctuation.section.embedded.begin.heex"
}
},
"end": "\\}",
"endCaptures": {
"0": {
"name": "punctuation.section.embedded.end.heex"
}
},
"patterns": [
{
"include": "#expression"
}
]
}
]
},
"tag": {
"patterns": [
{
"begin": "(</?)(\\w[^\\s>]*)(?<!/)",
"beginCaptures": {
"1": {
"name": "punctuation.definition.tag.begin.html"
},
"2": {
"name": "entity.name.tag.html"
}
},
"end": "((?: ?/)?>)",
"endCaptures": {
"1": {
"name": "punctuation.definition.tag.end.html"
}
},
"name": "meta.tag.other.unrecognized.html.derivative",
"patterns": [
{
"include": "#node-attributes"
}
]
}
]
},
"component": {
"patterns": [
{
"name": "meta.tag.other.unrecognized.html.derivative",
"begin": "(</?)([A-Z|\\.][^\\s>]*)(?<!/)",
"beginCaptures": {
"1": {
"name": "punctuation.definition.tag.begin.html"
},
"2": {
"name": "entity.name.type.module.elixir"
}
},
"end": "((?: ?/)?>)",
"endCaptures": {
"1": {
"name": "punctuation.definition.tag.end.html"
}
},
"patterns": [
{
"include": "#node-attributes"
}
]
}
]
},
"slotable": {
"patterns": [
{
"name": "meta.tag.other.unrecognized.html.derivative",
"begin": "(</?)(\\:[^\\s>]*)(?<!/)",
"beginCaptures": {
"1": {
"name": "punctuation.definition.tag.begin.html"
},
"2": {
"name": "entity.other.attribute-name.slot.surface"
}
},
"end": "((?: ?/)?>)",
"endCaptures": {
"1": {
"name": "punctuation.definition.tag.end.html"
}
},
"patterns": [
{
"include": "#node-attributes"
}
]
}
]
},
"html-comment": {
"begin": "<!--",
"captures": {
"0": {
"name": "punctuation.definition.comment.html"
}
},
"end": "-->",
"name": "comment.block.html",
"patterns": [
{
"match": "\\G-?>",
"name": "invalid.illegal.characters-not-allowed-here.html"
},
{
"match": "<!--(?!>)|<!-(?=-->)",
"name": "invalid.illegal.characters-not-allowed-here.html"
},
{
"match": "--!>",
"name": "invalid.illegal.characters-not-allowed-here.html"
}
]
},
"node-attributes": {
"patterns": [
{
"include": "#interpolation"
},
{
"include": "#attribute"
}
]
},
"attribute": {
"patterns": [
{
"begin": "([^\\x{0020}\"'<>/=\\x{0000}-\\x{001F}\\x{007F}-\\x{009F}\\x{FDD0}-\\x{FDEF}\\x{FFFE}\\x{FFFF}\\x{1FFFE}\\x{1FFFF}\\x{2FFFE}\\x{2FFFF}\\x{3FFFE}\\x{3FFFF}\\x{4FFFE}\\x{4FFFF}\\x{5FFFE}\\x{5FFFF}\\x{6FFFE}\\x{6FFFF}\\x{7FFFE}\\x{7FFFF}\\x{8FFFE}\\x{8FFFF}\\x{9FFFE}\\x{9FFFF}\\x{AFFFE}\\x{AFFFF}\\x{BFFFE}\\x{BFFFF}\\x{CFFFE}\\x{CFFFF}\\x{DFFFE}\\x{DFFFF}\\x{EFFFE}\\x{EFFFF}\\x{FFFFE}\\x{FFFFF}\\x{10FFFE}\\x{10FFFF}]+)",
"beginCaptures": {
"0": {
"name": "entity.other.attribute-name.html"
}
},
"comment": "Anything else that is valid",
"end": "(?=\\s*+[^=\\s])",
"name": "meta.attribute.unrecognized.$1.html",
"patterns": [
{
"include": "#attribute-value"
}
]
}
]
},
"attribute-value": {
"patterns": [
{
"begin": "=",
"beginCaptures": {
"0": {
"name": "punctuation.separator.key-value.html"
}
},
"end": "(?<=[^\\s=])(?!\\s*=)|(?=/?>)",
"patterns": [
{
"include": "#interpolation"
},
{
"match": "([^\\s\"'=<>`/]|/(?!>))+",
"name": "string.unquoted.html"
},
{
"begin": "\"",
"beginCaptures": {
"0": {
"name": "punctuation.definition.string.begin.html"
}
},
"end": "\"",
"endCaptures": {
"0": {
"name": "punctuation.definition.string.end.html"
}
},
"name": "string.quoted.double.html",
"patterns": [
{
"include": "#entities"
}
]
},
{
"begin": "'",
"beginCaptures": {
"0": {
"name": "punctuation.definition.string.begin.html"
}
},
"end": "'",
"endCaptures": {
"0": {
"name": "punctuation.definition.string.end.html"
}
},
"name": "string.quoted.single.html",
"patterns": [
{
"include": "#entities"
}
]
},
{
"match": "=",
"name": "invalid.illegal.unexpected-equals-sign.html"
}
]
}
]
},
"entities": {
"patterns": [
{
"name": "constant.character.entity.html",
"match": "(&)([a-zA-Z0-9]+|#[0-9]+|#x[0-9a-fA-F]+)(;)",
"captures": {
"1": {
"name": "punctuation.definition.entity.html"
},
"3": {
"name": "punctuation.definition.entity.html"
}
}
},
{
"name": "invalid.illegal.bad-ampersand.html",
"match": "&"
}
]
},
"tag-style": {
"patterns": [
{
"begin": "(<)(style)\\b(?=[^>]*(?:type=('text/sass'|\"text/sass\")|lang=(sass|'sass'|\"sass\")))(?![^/>]*/>\\s*$)",
"beginCaptures": {
"1": {
"name": "punctuation.definition.tag.begin.html"
},
"2": {
"name": "entity.name.tag.style.html"
}
},
"end": "(</)(style)(>)",
"endCaptures": {
"1": {
"name": "punctuation.definition.tag.begin.html"
},
"2": {
"name": "entity.name.tag.style.html"
},
"3": {
"name": "punctuation.definition.tag.end.html"
}
},
"patterns": [
{
"include": "#node-attributes"
},
{
"contentName": "source.sass",
"begin": "(>)",
"beginCaptures": {
"1": {
"name": "punctuation.definition.tag.end.html"
}
},
"end": "(?=</style>)",
"patterns": [
{
"include": "source.sass"
}
]
}
]
},
{
"begin": "(<)(style)\\b(?=[^>]*(?:type=('text/scss'|\"text/scss\")|lang=(scss|'scss'|\"scss\")))(?![^/>]*/>\\s*$)",
"beginCaptures": {
"1": {
"name": "punctuation.definition.tag.begin.html"
},
"2": {
"name": "entity.name.tag.style.html"
}
},
"end": "(</)(style)(>)",
"endCaptures": {
"1": {
"name": "punctuation.definition.tag.begin.html"
},
"2": {
"name": "entity.name.tag.style.html"
},
"3": {
"name": "punctuation.definition.tag.end.html"
}
},
"patterns": [
{
"include": "#node-attributes"
},
{
"contentName": "source.css.scss",
"begin": "(>)",
"beginCaptures": {
"1": {
"name": "punctuation.definition.tag.end.html"
}
},
"end": "(?=</style>)",
"patterns": [
{
"include": "source.css.scss"
}
]
}
]
},
{
"begin": "(<)(style)\\b(?=[^>]*(?:type=('text/less'|\"text/less\")|lang=(less|'less'|\"less\")))(?![^/>]*/>\\s*$)",
"beginCaptures": {
"1": {
"name": "punctuation.definition.tag.begin.html"
},
"2": {
"name": "entity.name.tag.style.html"
}
},
"end": "(</)(style)(>)",
"endCaptures": {
"1": {
"name": "punctuation.definition.tag.begin.html"
},
"2": {
"name": "entity.name.tag.style.html"
},
"3": {
"name": "punctuation.definition.tag.end.html"
}
},
"patterns": [
{
"include": "#node-attributes"
},
{
"contentName": "source.css.less",
"begin": "(>)",
"beginCaptures": {
"1": {
"name": "punctuation.definition.tag.end.html"
}
},
"end": "(?=</style>)",
"patterns": [
{
"include": "source.css.less"
}
]
}
]
},
{
"begin": "(<)(style)\\b(?=[^>]*(?:type=('text/stylus'|\"text/stylus\")|lang=(stylus|'stylus'|\"stylus\")))(?![^/>]*/>\\s*$)",
"beginCaptures": {
"1": {
"name": "punctuation.definition.tag.begin.html"
},
"2": {
"name": "entity.name.tag.style.html"
}
},
"end": "(</)(style)(>)",
"endCaptures": {
"1": {
"name": "punctuation.definition.tag.begin.html"
},
"2": {
"name": "entity.name.tag.style.html"
},
"3": {
"name": "punctuation.definition.tag.end.html"
}
},
"patterns": [
{
"include": "#node-attributes"
},
{
"contentName": "source.stylus",
"begin": "(>)",
"beginCaptures": {
"1": {
"name": "punctuation.definition.tag.end.html"
}
},
"end": "(?=</style>)",
"patterns": [
{
"include": "source.stylus"
}
]
}
]
},
{
"begin": "(<)(style)\\b(?=[^>]*(?:type=('text/postcss'|\"text/postcss\")|lang=(postcss|'postcss'|\"postcss\")))(?![^/>]*/>\\s*$)",
"beginCaptures": {
"1": {
"name": "punctuation.definition.tag.begin.html"
},
"2": {
"name": "entity.name.tag.style.html"
}
},
"end": "(</)(style)(>)",
"endCaptures": {
"1": {
"name": "punctuation.definition.tag.begin.html"
},
"2": {
"name": "entity.name.tag.style.html"
},
"3": {
"name": "punctuation.definition.tag.end.html"
}
},
"patterns": [
{
"include": "#node-attributes"
},
{
"contentName": "source.postcss",
"begin": "(>)",
"beginCaptures": {
"1": {
"name": "punctuation.definition.tag.end.html"
}
},
"end": "(?=</style>)",
"patterns": [
{
"include": "source.postcss"
}
]
}
]
},
{
"begin": "(<)(style)\\b(?=[^>]*(?:(?:type=('text/css'|\"text/css\")|lang=(css|'css'|\"css\")))?)(?![^/>]*/>\\s*$)",
"beginCaptures": {
"1": {
"name": "punctuation.definition.tag.begin.html"
},
"2": {
"name": "entity.name.tag.style.html"
}
},
"end": "(</)(style)(>)",
"endCaptures": {
"1": {
"name": "punctuation.definition.tag.begin.html"
},
"2": {
"name": "entity.name.tag.style.html"
},
"3": {
"name": "punctuation.definition.tag.end.html"
}
},
"patterns": [
{
"include": "#node-attributes"
},
{
"contentName": "source.css",
"begin": "(>)",
"beginCaptures": {
"1": {
"name": "punctuation.definition.tag.end.html"
}
},
"end": "(?=</style>)",
"patterns": [
{
"include": "source.css"
}
]
}
]
}
]
},
"tag-script": {
"patterns": [
{
"begin": "(<)(script)\\b(?=[^>]*(?:(?:type=('text/javascript'|\"text/javascript\")|lang=(javascript|'javascript'|\"javascript\")))?)(?![^/>]*/>\\s*$)",
"beginCaptures": {
"1": {
"name": "punctuation.definition.tag.begin.html"
},
"2": {
"name": "entity.name.tag.script.html"
}
},
"end": "(</)(script)(>)",
"endCaptures": {
"1": {
"name": "punctuation.definition.tag.begin.html"
},
"2": {
"name": "entity.name.tag.script.html"
},
"3": {
"name": "punctuation.definition.tag.end.html"
}
},
"patterns": [
{
"include": "#node-attributes"
},
{
"contentName": "source.js",
"begin": "(>)",
"beginCaptures": {
"1": {
"name": "punctuation.definition.tag.end.html"
}
},
"end": "(?=</script>)",
"patterns": [
{
"include": "source.js"
}
]
}
]
}
]
}
}
}
gitextract_ru5omq95/
├── .gitignore
├── .vscode/
│ └── launch.json
├── .vscodeignore
├── CHANGELOG.md
├── LICENSE
├── README.md
├── language-configuration.json
├── package.json
└── syntaxes/
├── elixir-heex.json
└── heex.json
Condensed preview — 10 files, each showing path, character count, and a content snippet. Download the .json file or copy for the full structured content (29K chars).
[
{
"path": ".gitignore",
"chars": 7,
"preview": "*.vsix\n"
},
{
"path": ".vscode/launch.json",
"chars": 588,
"preview": "// A launch configuration that launches the extension inside a new window\n// Use IntelliSense to learn about possible at"
},
{
"path": ".vscodeignore",
"chars": 66,
"preview": ".vscode/**\n.vscode-test/**\n.gitignore\nvsc-extension-quickstart.md\n"
},
{
"path": "CHANGELOG.md",
"chars": 308,
"preview": "# Changelog\n\n## v0.1.3 (2024-12-16)\n\n- Support syntax highlighting for curly brackets in the body\n\n## v0.1.2 (2022-10-04"
},
{
"path": "LICENSE",
"chars": 1081,
"preview": "The MIT License (MIT)\n\nCopyright (c) 2021 Marlus Saraiva\n\nPermission is hereby granted, free of charge, to any person ob"
},
{
"path": "README.md",
"chars": 507,
"preview": "# Phoenix package for VS Code\n\nSyntax highlighting support for Phoenix templates.\n\n## Features\n\n * Support syntax highl"
},
{
"path": "language-configuration.json",
"chars": 417,
"preview": "{\n \"comments\": {\n \"blockComment\": [\"<%!--\", \"--%>\"]\n },\n \"brackets\": [\n [\"<\", \">\"],\n [\"{\", \"}\"],\n [\"(\", \""
},
{
"path": "package.json",
"chars": 1456,
"preview": "{\n \"name\": \"phoenix\",\n \"displayName\": \"Phoenix Framework\",\n \"homepage\": \"https://www.phoenixframework.org\",\n "
},
{
"path": "syntaxes/elixir-heex.json",
"chars": 2464,
"preview": "{\n \"injectionSelector\": \"L:source.elixir -comment -text -string\",\n \"name\": \"elixir-heex\",\n \"patterns\": [\n {\n "
},
{
"path": "syntaxes/heex.json",
"chars": 18521,
"preview": "{\n \"name\": \"heex\",\n \"scopeName\": \"source.heex\",\n \"fileTypes\": [\"heex\"],\n \"patterns\": [\n {\n \"include\": \"#doct"
}
]
About this extraction
This page contains the full source code of the phoenixframework/vscode-phoenix GitHub repository, extracted and formatted as plain text for AI agents and large language models (LLMs). The extraction includes 10 files (24.8 KB), approximately 6.5k tokens. Use this with OpenClaw, Claude, ChatGPT, Cursor, Windsurf, or any other AI tool that accepts text input. You can copy the full output to your clipboard or download it as a .txt file.
Extracted by GitExtract — free GitHub repo to text converter for AI. Built by Nikandr Surkov.