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
1 change: 1 addition & 0 deletions .envrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
use flake
21 changes: 20 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,15 +1,26 @@
/.direnv
/tmp
/dist
/lib
.env*
!.env.example
!.envrc
# nix
/result*
/builds
# node-gyp
/build
# prebuildify
/prebuilds
# docusaurus
/public
.docusaurus
.cache-loader
# wrangler
.wrangler
.dev.vars
/wrangler.deploy.toml
# github output
/output

# Logs
logs
Expand Down Expand Up @@ -120,10 +131,18 @@ dist

# Stores VSCode versions used for testing VSCode extensions
.vscode-test
.vscode

# Neo4j Local DB files
neo4j/

# yarn v2
.yarn/cache
.yarn/unplugged
.yarn/build-state.yml
.yarn/install-state.gz
.pnp.*

.DS_Store
.idea
.aider*
8 changes: 8 additions & 0 deletions .matrixai/matrixai-standards/.editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
root = true

[*]
end_of_line = lf
indent_style = space
indent_size = 2
insert_final_newline = true
trim_trailing_whitespace = true
149 changes: 149 additions & 0 deletions .matrixai/matrixai-standards/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,149 @@
/_seed
/.direnv
/tmp
/dist
.env*
!.env.example
!.envrc
# nix
/result*
/builds
# node-gyp
/build
# prebuildify
/prebuilds
# docusaurus
/public
.docusaurus
.cache-loader
# wrangler
.wrangler
.dev.vars
# github output
/output

# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
lerna-debug.log*

# Diagnostic reports (https://nodejs.org/api/report.html)
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json

# Runtime data
pids
*.pid
*.seed
*.pid.lock

# Directory for instrumented libs generated by jscoverage/JSCover
lib-cov

# Coverage directory used by tools like istanbul
coverage
*.lcov

# nyc test coverage
.nyc_output

# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
.grunt

# Bower dependency directory (https://bower.io/)
bower_components

# node-waf configuration
.lock-wscript

# Compiled binary addons (https://nodejs.org/api/addons.html)
build/Release

# Dependency directories
node_modules/
jspm_packages/

# Snowpack dependency directory (https://snowpack.dev/)
web_modules/

# TypeScript cache
*.tsbuildinfo

# Optional npm cache directory
.npm

# Optional eslint cache
.eslintcache

# Microbundle cache
.rpt2_cache/
.rts2_cache_cjs/
.rts2_cache_es/
.rts2_cache_umd/

# Optional REPL history
.node_repl_history

# Output of 'npm pack'
*.tgz

# Yarn Integrity file
.yarn-integrity

# dotenv environment variables file
.env
.env.test

# parcel-bundler cache (https://parceljs.org/)
.cache
.parcel-cache

# Next.js build output
.next
out

# Nuxt.js build / generate output
.nuxt
dist

# Gatsby files
.cache/
# Comment in the public line in if your project uses Gatsby and not Next.js
# https://nextjs.org/blog/next-9-1#public-directory-support
# public

# vuepress build output
.vuepress/dist

# Serverless directories
.serverless/

# FuseBox cache
.fusebox/

# DynamoDB Local files
.dynamodb/

# TernJS port file
.tern-port

# Stores VSCode versions used for testing VSCode extensions
.vscode-test
.vscode

# Neo4j Local DB files
neo4j/

# yarn v2
.yarn/cache
.yarn/unplugged
.yarn/build-state.yml
.yarn/install-state.gz
.pnp.*

.DS_Store
.idea
.aider*
!templates/.aider*
23 changes: 23 additions & 0 deletions .matrixai/matrixai-standards/AGENTS.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# AGENTS
- This is the **standards source repo**. It is not a product repo and does not declare/enforce a product profile.
- Downstream product repos vendor this repo under `./.matrixai/matrixai-standards/` and keep their own repo-root `AGENTS.md` + `./.matrixai/repo-profile.yml` (see [`README.md`](README.md)).
- When editing standards, enforce the universal hotset [`standards/HOTSET.md`](standards/HOTSET.md).
- When editing templates, keep them consistent with the downstream contract documented in [`README.md`](README.md#profile-key-first-navigation-for-architecture-overlays).
- Prefer ASCII punctuation/symbols when an equivalent exists (see [`standards/HOTSET.md`](standards/HOTSET.md) [MXS-GEN-006]).
- Ensure edits comply with [`.editorconfig`](.editorconfig) (LF line endings, 2-space indent, final newline, trim trailing whitespace).
- Line-reference policy (applies to all agent-generated repository content: Markdown, docs, templates, and code comments):
- Never emit `path:line` (e.g. `foo.ts:1`, `README.md:126`) into repository files.
- Do NOT put `:number` inside Markdown link destinations: `[x](path:123)` is banned.
- If a line reference is needed, use either:
- `[x](path#heading-anchor)` (if possible), or
- `[x](path) (line 123)` (preferred, portable), or
- `[x](path#L123)` only when explicitly targeting a renderer that supports `#L` anchors.
- If you would have emitted `:1`, drop it entirely: use `path` with no line info.
- For downstream-only paths that are not present in this standards repo (e.g. product-repo files like `wrangler.toml`), use inline code instead of a Markdown link.
- Apply repo-local golden commands and overrides here (fill if/when you standardize them for this repo):
- build: ___
- test: ___
- lint: ___
- lintfix: ___
- docs: ___
- bench: ___
Loading
Loading