Skip to content

Instantly share code, notes, and snippets.

View rohan-kiratsata's full-sized avatar
👨‍💻
Coding

rohanzig rohan-kiratsata

👨‍💻
Coding
View GitHub Profile
@rohan-kiratsata
rohan-kiratsata / 00 - Cursor AI Prompting Rules.md
Created November 1, 2025 12:34 — forked from aashari/00 - Cursor AI Prompting Rules.md
Cursor AI Prompting Rules - This gist provides structured prompting rules for optimizing Cursor AI interactions. It includes three key files to streamline AI behavior for different tasks.

The Autonomous Agent Prompting Framework

This repository contains a disciplined, evidence-first prompting framework designed to elevate an Agentic AI from a simple command executor to an Autonomous Principal Engineer.

The philosophy is simple: Autonomy through discipline. Trust through verification.

This framework is not just a collection of prompts; it is a complete operational system for managing AI agents. It enforces a rigorous workflow of reconnaissance, planning, safe execution, and self-improvement, ensuring every action the agent takes is deliberate, verifiable, and aligned with senior engineering best practices.

I also have Claude Code prompting for your reference: https://gist.github.com/aashari/1c38e8c7766b5ba81c3a0d4d124a2f58

@rohan-kiratsata
rohan-kiratsata / countdown-tweet-script.js
Last active December 24, 2024 09:40
countdown-tweet-script
require('dotenv').config();
const { TwitterApi } = require('twitter-api-v2');
const cron = require('node-cron');
const client = new TwitterApi({
appKey: "",
appSecret: "",
accessToken: "",
accessSecret: "",
});
@rohan-kiratsata
rohan-kiratsata / http-server.go
Last active September 29, 2024 11:13
Basic HTTP server from scratch in go
/*
Basic implementation of an HTTP server in Go to learn and understand how it works.
What does it NOT do?
- improved error handling
- parse headers
- routing
- ...many more
*/