My first custom made AI-skill.

Published: (May 5, 2026 at 02:34 PM EDT)
1 min read
Source: Dev.to

Source: Dev.to

Introduction

Hello there. I’m new to AI and recently discovered AI coding skills (like OpenCode/Claude Code).

I noticed that AI tends to “hallucinate”—making things up or forgetting context in long sessions. After some research, I learned this happens because the context window has limits.

So I built a simple skill called nhallucinate:

https://github.com/AlanNobita/nhallucinate

It stores memory in project‑specific files (.agent/nhallucinate/) so the AI remembers what worked and what didn’t across sessions.

Feel free to give me suggestions, teach me new stuff, and correct any mistakes. I am posting this to get good feedback from people who understand. Thank you!

0 views
Back to Blog

Related posts

Read more »

We Do Not Teach Thinking to AI

Most of us learned to prompt AI by guiding its thinking: - “Think step by step.” - “Here’s an example of how to solve this.” - “First check A, then compare B, f...