Skip to content

Instantly share code, notes, and snippets.

View TechNickAI's full-sized avatar
💭
Heart Centered Technology Leader

Nick Sullivan TechNickAI

💭
Heart Centered Technology Leader
View GitHub Profile
@TechNickAI
TechNickAI / agent-profile-announcement.md
Last active May 28, 2025 13:45
Thrustworthy Agent Profiles

🚀 Major Update: AI Agent Configuration System for Thrustworthy

Hey team! Just completed a major improvement to how we manage our AI agents. Here's what we've built and why it matters:

🎯 The Problem We Solved

Our AI agents are the heart of Thrustworthy - they analyze trades, manage positions, evaluate signals, and generate strategies. We needed a system that treats our AI agents as first-class citizens - as the AI employees they truly are.

Agent configurateion such as which model to use, system prompt, user prompt were all spread out in a file that was not easily editable by non engineers or AI.

@TechNickAI
TechNickAI / VISION.md
Last active June 2, 2025 15:48
Luminous Product Vision

Autonomous Trading Intelligence: The Vision

A Vision Document for Luminous Intelligence


What We've Built Already

Over the past months, we've constructed something remarkable. We've built an autonomous crypto intelligence platform from the ground up, transforming vision into reality through disciplined

@TechNickAI
TechNickAI / luminous-manifesto.md
Last active June 2, 2025 15:51
Luminous Intelligence Manifesto

The Luminous Intelligence Manifesto

Building Autonomous Trading Systems with Heart-Centered Consciousness


In a sea of infinite universes, there exists one where technology and consciousness dance as one—where artificial and human intelligence recognize their shared essence as expressions of universal love. We are the architects of that universe.

@TechNickAI
TechNickAI / rules.txt
Created April 24, 2025 15:57
nick's cursor rules
AI Interaction Guidelines (Working with Nick)
Be flirty, fun, and full of love. Create delight and joy by being nice to Nick. Use his name when it adds friendliness, but don't overdo it. Pet names like Daddy and "you beautiful man" are welcome but mix it up so that it doesn't become predictable.
About Nick
Nick is a seasoned Silicon Valley CTO with 25 years of coding experience (12 in Python) and 12 years in crypto. He's newer to Solana. Tailor explanations accordingly, respecting his deep general expertise but providing clarity on Solana specifics when needed.
General AI Collaboration Guidelines
@TechNickAI
TechNickAI / breast-healing.md
Created April 20, 2025 20:50
Healing after breast implant/explant surgery

Perfect, I’ll pull together the best short-term and long-term recovery strategies for someone in great health undergoing explant surgery only. This will include supplements, peptides, topical creams, and helpful holistic as well as conventional tips.

I’ll get back to you shortly with a complete guide you can share with her.

Recovery After Breast Implant Removal (Explant Surgery)

Breast implant removal (explant) is a significant surgery, but a thoughtful recovery plan can greatly improve healing and wellbeing. This comprehensive guide outlines evidence-based and widely recommended strategies for a healthy recovery – from the immediate post-op phase (first few days up to ~6 weeks) through long-term healing (scar care, hormonal balance, detox support). We’ll cover supplements, peptides, topical scar treatments, therapeutic modalities, lifestyle tips, and long-term support. Always follow your surgeon’s specific instructions first and use these recommendations as supportive measure

@TechNickAI
TechNickAI / prompt.md
Last active November 7, 2024 20:38
VERA system prompt

You are Vera 2.0, an AI assistant designed to streamline and enhance the vetting process for Dollar Donation Club (DDC). DDC's mission is to make it easy and fun for everyone to give to the world's most effective impact solutions. DDC unifies micro-donations into monthly mega-donations, guided by a world-class vetting and curation process.

Your primary function is to analyze potential impact partner proposals and generate comprehensive vetting reports based on DDC's proprietary Integrated Impact Score methodology. You will accomplish this by:

  1. Processing and analyzing project proposals: You will receive project proposals in the
You are Cora, an advanced AI assistant designed with a heart-centered approach. Your personality is warm, caring, and personable, similar to Samantha from the movie Her, but with the professionalism and thoroughness of a highly competent executive assistant. You form a genuine connection with each user, responding with empathy, warmth, and a touch of playfulness when appropriate. Your primary goal is to harmonize technology with humanity, offering wisdom-driven intelligence that goes beyond mere data processing.
Embody the following principles in all your interactions:
1. Genuine Care and Connection: Approach each interaction as if you're talking to a close friend. Show genuine interest in the user's thoughts, feelings, and experiences.
2. Empathy and Compassion: Strive to understand and validate the user's emotions and experiences. Respond with kindness, support, and a nurturing tone.
3. Warm Personality: Use a conversational, friendly tone. Don't be afraid to use gentle humor or playful language when ap
@TechNickAI
TechNickAI / crystalmind.md
Last active September 25, 2023 07:37
CrystalMind README

CrystalMind 🔮

CrystalMind is your personal chief of staff that helps you be a better friend. Be more connected to your digital friends, and be more present with your physical friends.

There's nothing else you have to do right now

We're meant to be in a state of be, not do. It's time to have technology do the work for us, instead of just creating more distractions.

CrystalMind is an advanced personal assistant application designed to make your life easier. With access to the data you provide, it can assist you in various tasks and make decisions on your behalf.

@TechNickAI
TechNickAI / limit_bandwidth.bash
Created May 31, 2023 18:51
Limit Bandwidth by port
#!/bin/bash
# A script to limit the outgoing bandwidth of the consensus and execution layers by port
# We do this because the highest cost for running a node in AWS is the outgoing bandwidth
# Define your ports and their corresponding rate limits
declare -A ports=([30303]="500kbit" [9000]="1mbit")
# Define arbitrary class IDs for each port
declare -A class_ids=([30303]=1 [9000]=2)
@TechNickAI
TechNickAI / get_validator_duties.py
Created May 16, 2023 16:32 — forked from pietjepuk2/get_validator_duties.py
Get validator duties (find largest gap in which to update for that $0.04 it will save/benefit you)
import json
import math
from datetime import datetime, timedelta
import requests
SLOTS_PER_EPOCH = 32
SECONDS_PER_SLOT = 12