AI Architecture Analysis
This repository is indexed by RepoMind. By analyzing d12frosted/elpa-mirror in our AI interface, you can instantly generate complete architecture diagrams, visualize control flows, and perform automated security audits across the entire codebase.
Our Agentic Context Augmented Generation (Agentic CAG) engine loads full source files into context on-demand, avoiding the fragmentation of traditional RAG systems. Ask questions about the architecture, dependencies, or specific features to see it in action.
Repository Overview (README excerpt)
Crawler view#+begin_html #+end_html • =elpa-mirror= Mirrors for some Emacs package archives. These mirrors should be used only when official repository is temporarily down. Maintained using [[https://github.com/d12frosted/mirror-elpa][mirror-elpa]]. ** Usage - GitHub Just setup =package-archives= in your =init.el= file. #+BEGIN_SRC emacs-lisp (setq package-archives '(("melpa" . "https://raw.githubusercontent.com/d12frosted/elpa-mirror/master/melpa/") ("org" . "https://raw.githubusercontent.com/d12frosted/elpa-mirror/master/org/") ("gnu" . "https://raw.githubusercontent.com/d12frosted/elpa-mirror/master/gnu/"))) #+END_SRC ** Usage - Local First, you need to clone this repository. #+BEGIN_SRC bash $ git clone --depth 1 git@gitlab.com:d12frosted/elpa-mirror.git ~/.elpa-mirror #+END_SRC And then setup =package-archives= in your =init.el= file. #+BEGIN_SRC emacs-lisp (setq package-archives (("melpa" . ,(concat user-home-directory ".elpa-mirror/melpa/")) ("org" . ,(concat user-home-directory ".elpa-mirror/org/")) ("gnu" . ,(concat user-home-directory ".elpa-mirror/gnu/")))) #+END_SRC For more grained control over =package-archives= (e. g. if you wish to use mirror only when one of the official repositories is down) checkout how it's implemented in Spacemacs. • Support If you enjoy this project, you can support its development via [[https://github.com/sponsors/d12frosted][GitHub Sponsors]] or [[https://www.patreon.com/d12frosted][Patreon]].