Skip to content

SixArm/ai-agents-tips

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 

Repository files navigation

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 + ")");
})

About

AI agent rules: markdown files for Claude.md, ChatGPT, Copilot, Cursor, Windsurf, and more.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published