SSH connections, kept by the people who own them
An agent chat will act on a machine you choose, so this is the screen where you choose it. User-owned like a note, not admin-owned like a connection: these are somebody's own machines and somebody's own keys, and "anyone in this group may log in to my server" is a different feature with a different blast radius. services/sharing.py is deliberately not involved either -- sharing grants reading, and a host somebody else can read is a host they can log in to. Trust on first use, made explicit rather than assumed. Adding a host does not connect to it. Check looks at its key and shows you the fingerprint; nothing is sent until you accept, because get_server_host_key completes the key exchange and stops -- no username, no credential. Accepting pins it, and a host that later presents a different key is refused with the reason rather than quietly trusted. Moving a profile to another host or port forgets the pin, since a key belongs to the machine it came from. Four asyncssh defaults are actively wrong here and all four are passed explicitly: every LLeMbas user shares one unix account, so `known_hosts` would be a shared trust store, `client_keys` would authenticate one person with another's key, `config` would let a ProxyCommand redirect the connection, and `agent_path` would silently use $SSH_AUTH_SOCK. There is a test for exactly that, and it needs no server. Files go over SFTP rather than through a shell. The SSH exec protocol carries one command *string* that the far side parses, with no argv form at all, so a model-supplied path in a command line is unavoidably a quoting problem. Over SFTP a path is a path. Chat gains its kind, connection, project directory and mode; the first three are fixed once a chat has a message, because a transcript whose earlier turns ran somewhere else is not one conversation. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
This commit is contained in:
@@ -49,6 +49,12 @@ dev = [
|
||||
# is already a core dependency. Without this the provider is offered in the
|
||||
# admin UI with an install hint rather than silently missing.
|
||||
search = ["ddgs>=9.0"]
|
||||
# Agent chats, which run their commands on a machine reached over SSH. Optional
|
||||
# on the same terms as `search`: an instance that never turns agents on should
|
||||
# not carry the dependency, and one that does gets told how to install it rather
|
||||
# than finding the feature silently missing. `bcrypt` is what decrypts a
|
||||
# passphrase-protected OpenSSH key -- without it, pasting one fails opaquely.
|
||||
ssh = ["asyncssh[bcrypt]>=2.14"]
|
||||
|
||||
[project.scripts]
|
||||
lembas = "lembas.cli:app"
|
||||
|
||||
Reference in New Issue
Block a user