Skip to content

Instantly share code, notes, and snippets.

View iluckhack's full-sized avatar

Andrey Pakhomov iluckhack

View GitHub Profile
@iluckhack
iluckhack / README.md
Created June 22, 2025 06:07 — forked from butschster/README.md
Useful prompts

Context Generator: Shared Prompts Gist

I've created this Gist with a collection of ready-to-use prompts for Context Generator's MCP server. This showcases one of its most powerful features - the ability to import shared prompts from external sources.

Introduction

This Gist provides a library of pre-configured prompts that can be easily imported into any Context Generator project. These prompts are designed to help with common development tasks when working with Context Generator and LLMs.

Why This Is Extremely Useful

@iluckhack
iluckhack / prompt.md
Created June 22, 2025 06:13 — forked from butschster/prompt.md
Feature-Focused Organization

Your project structure follows a Feature-Focused Organization principle, which is an excellent way to manage complex applications by grouping related functionalities together. Here’s a breakdown of how your structure aligns with best practices:


Key Principles of Feature-Focused Organization

  1. Group by Feature First – Organize code primarily by business features rather than technical layers.
  2. Modules Represent Business Domains – Each module corresponds to a business context (e.g., Auth, Package, User).
  3. Features Represent Specific User Actions – Each feature within a module represents a use case (e.g., IssueToken, SubmitPackage).
  4. Complete Feature Folders – Each feature folder contains all components needed to implement that feature.