8fb5954bc5
main.lua now resolves package.path relative to its own script directory rather than cwd, so the packaged install at /usr/share/lua/5.1/aish/ finds its siblings regardless of where the user invokes aish from. Dev mode (luajit main.lua from the repo root) is preserved: arg[0] is "main.lua" with no "/" so the regex returns nil and _dir falls back to "./" — identical to the previous behavior. bin/aish is a POSIX-sh wrapper that execs luajit against $AISH_LIB/main.lua (default /usr/share/lua/5.1/aish). The AISH_LIB env override lets users point at a dev checkout without uninstalling the package. Wrapper emits distinct errors when AISH_LIB is missing or when luajit isn't on PATH so broken installs surface clearly instead of through a bare sh: not found. examples/config.lua is the canonical commented reference, shipped at /usr/share/doc/aish/examples/config.lua. Stripped of the two live MCP bearer tokens carried by the in-tree config.lua and switched to the auth_env env-var indirection form; mcp.servers entries are commented out so a copy-to-~/.config/aish/config.lua produces a working starting point on first uncomment. HOSSENFELDER URL flagged as maintainer-LAN. LICENSE: MIT, copyright 2026 Markus Fritsche. README updated to match. Sonnet review of the changeset (per feedback_reviews_use_sonnet.md + bugfix-process step 4): no blockers; the two Important findings (USAGE text still said "luajit main.lua", bin/aish didn't pre-check luajit) and one Nit (unredacted HOSSENFELDER URL) were folded in before commit. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
22 lines
1.0 KiB
Plaintext
22 lines
1.0 KiB
Plaintext
MIT License
|
|
|
|
Copyright (c) 2026 Markus Fritsche
|
|
|
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
of this software and associated documentation files (the "Software"), to deal
|
|
in the Software without restriction, including without limitation the rights
|
|
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
copies of the Software, and to permit persons to whom the Software is
|
|
furnished to do so, subject to the following conditions:
|
|
|
|
The above copyright notice and this permission notice shall be included in all
|
|
copies or substantial portions of the Software.
|
|
|
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
SOFTWARE.
|