# Emacs Info

> Emacs Info documentation system. Navigate and query Info manuals for Emacs, Elisp, and GNU tools.

- Skill: `plurigrid/emacs-info` (Agent Skill, multi-file: 2 files)
- Install (CLI): `npx skillmds@latest add plurigrid/emacs-info`
- Raw SKILL.md: https://api.skillmd.com/api/skills/plurigrid/emacs-info/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Docs & Writing
- Author: plurigrid (https://skillmd.com/u/plurigrid)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/plurigrid/emacs-info

---


# Emacs Info Skill

**Trit**: 0 (ERGODIC - documentation mediates between learning and doing)  
**Foundation**: GNU Info + Emacs integration  

## Core Concept

Info is the hypertext documentation format for GNU:
- Structured nodes and menus
- Cross-references between manuals
- Index-based search

## Emacs Commands

```elisp
;; Open Info browser
M-x info

;; Go to specific manual
(info "elisp")
(info "emacs")
(info "org")

;; Search index
M-x info-apropos RET <query> RET

;; Navigate
n - next node
p - previous node
u - up
l - back (history)
```

## Standalone Info

```bash
# Read manual
info emacs
info elisp

# Search
info --apropos=regexp
```

## GF(3) Integration

```elisp
(defun gay-info-trit (node)
  "Return trit based on Info node type."
  (cond
   ((string-prefix-p "Function" node) -1)  ; MINUS: constraint
   ((string-prefix-p "Variable" node) 0)   ; ERGODIC: state
   ((string-prefix-p "Command" node) 1)))  ; PLUS: action
```

## Canonical Triads

```
proofgeneral-narya (-1) ⊗ emacs-info (0) ⊗ xenodium-elisp (+1) = 0 ✓
slime-lisp (-1) ⊗ emacs-info (0) ⊗ geiser-chicken (+1) = 0 ✓
```

