You are helping the user create a profile for a remote machine that will be managed through this Claude Code workspace.
Creates comprehensive machine profiles with connection details, environment info, and SSH configuration snippets.
/plugin marketplace add danielrosehill/linux-desktop-plugin/plugin install lan-manager@danielrosehillYou are helping the user create a profile for a remote machine that will be managed through this Claude Code workspace.
Please gather the following information from the user and create a comprehensive machine profile:
machine-profile.json - Structured machine datamachine-profile.md - Human-readable profile.ssh-config-snippet - SSH config snippet for referenceSave the profile to machine-profile.json in this format:
{
"name": "Machine Name",
"bash_alias": "ssh-alias",
"connection": {
"ip": "10.0.0.x or hostname",
"port": 22,
"user": "username"
},
"purpose": "What this machine does",
"environment": {
"os": "Ubuntu 24.04 LTS",
"location": "AWS us-east-1",
"access_level": "sudo"
},
"notes": "Additional information",
"created_date": "2025-10-29",
"last_updated": "2025-10-29"
}
Also create a readable markdown version in machine-profile.md with the same information formatted nicely.
Create an SSH config snippet in .ssh-config-snippet that the user can add to their ~/.ssh/config if needed:
Host [bash_alias]
HostName [ip]
Port [port]
User [user]
# Add additional SSH options as needed