init: lib-core.api-discovery v0.1.0 skeleton

Empty M-table. Functions added incrementally via TDD in subsequent
S2-plan tasks.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
Axel Meyer
2026-05-16 12:41:49 +02:00
commit bb9bee495b
4 changed files with 13 additions and 0 deletions

2
.gitignore vendored Normal file
View File

@@ -0,0 +1,2 @@
build/
*.log

5
README.md Normal file
View File

@@ -0,0 +1,5 @@
# lib-core.api-discovery
Pure-Lua-Library for surface-discovery (extract `M.*` from Lua source) and README-parsing (extract documented API from markdown). Sandbox-safe — no FS, no side-effects. Used by Sporel's `--lint` CLI mode.
Version: 0.1.0

5
init.lua Normal file
View File

@@ -0,0 +1,5 @@
-- lib-core.api-discovery — Pure-Lua surface-discovery + README-parsing.
-- See: meta/docs/superpowers/specs/2026-05-16-api-doc-convention-design.md
local M = {}
return M

1
manifest.lib Normal file
View File

@@ -0,0 +1 @@
{"id":"lib-core.api-discovery","version":"0.1.0","api_min":"0.1"}