Skip to content

Instantly share code, notes, and snippets.

View neolectron's full-sized avatar
👀
Coding

Manu neolectron

👀
Coding
View GitHub Profile
@neolectron
neolectron / reference-project-SKILL.md
Created April 25, 2026 17:56
Agent skill to manage / compare reference projects
name reference-projects
description Workflow for managing and browsing reference projects — cloned third-party repos kept in a local references/ folder for comparison. Load when the user asks to compare with references, add/update a reference, or look at how other projects handle something. Trigger phrases include "compare with references", "compare with others", "reference projects", "add a reference", "update references", "how do others do".

Reference Projects

A reference project is a cloned third-party repo kept locally for comparison and inspiration. They live in references/ at the project root, are gitignored, and are never modified.

import type { Plugin } from "vite";
import { relative } from "node:path";
type MinimalPluginContext = {
resolve(
this: MinimalPluginContext,
source: string,
importer?: string,
options?: { skipSelf?: boolean },
): Promise<{ id: string } | null>;
# Edit this configuration file to define what should be installed on
# your system. Help is available in the configuration.nix(5) man page
# and in the NixOS manual (accessible by running ‘nixos-help’).
{ config, pkgs, ... }:
{
imports = [
./hardware-configuration.nix # Include the results of the hardware scan.
];