MIRROR: javascript for ๐Ÿœ's, a tiny runtime with big ambitions
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

add check_all for ease of use

+8
+5
.github/agents/check_all.js
··· 1 + await import('./check_repo_knowledge.js'); 2 + await import('./check_repo_structure.js'); 3 + 4 + process.stdout.write('\n'); 5 + await import('./route_validation.js');
+3
maidfile.toml
··· 23 23 [tasks.run] 24 24 script = ["maid build -q", "./build/ant %{arg.1}"] 25 25 26 + [tasks.check] 27 + script = "ant .github/agents/check_all.js" 28 + 26 29 [tasks.knowledge] 27 30 script = "ant .github/agents/check_repo_knowledge.js" 28 31