Skip to content

Latest commit

 

History

History
142 lines (128 loc) · 5.58 KB

File metadata and controls

142 lines (128 loc) · 5.58 KB

AI agents tips

AI agents tips, especially agent.md markdown files full of AI contexts, AI instructions, and AI rules, to help guide your AI to help you.

These files are for many kinds of programming language, web frameworks, development libraries, and deployment systems.

See also https://agents.md/

Thanks

The files come from the awesome repo:

This work is thanks to excellent leadership by:

And to 100+ free open source contributors:

The code to convert the rules files from TypeScript to Markdown:

https://github.com/pontusab/directories/blob/main/packages/data/src/rules/index.ts

// Write each rule's content as a markdown file
rules.forEach((rule: Rule) => {
    try {
        fs.writeFileSync(rule.slug + ".md", rule.content);
    } catch (err) {
        console.error(err);
    )
});

// Print each rule's author as a markdown link
rules.forEach((rule: Rule) => {
    console.log("- [" + rule.author?.name + "](" + rule.author?.url + ")");
})