harnessed_agent/models/hermes_remote_skills.json
2026-05-04 10:09:04 +08:00

173 lines
4.7 KiB
JSON

{
"summary": [
{
"name": "harnessed_remote_skills",
"title": "Remote skills SSH configuration with user isolation",
"primary": "id",
"catelog": "entity"
}
],
"fields": [
{
"name": "id",
"title": "Remote Skill ID",
"type": "str",
"length": 32,
"nullable": "no",
"comments": "Unique remote skill identifier"
},
{
"name": "user_id",
"title": "User ID",
"type": "str",
"length": 32,
"nullable": "no",
"comments": "User who owns this remote skill configuration"
},
{
"name": "name",
"title": "Skill Name",
"type": "str",
"length": 100,
"nullable": "no",
"comments": "Remote skill name"
},
{
"name": "host",
"title": "SSH Host",
"type": "str",
"length": 255,
"nullable": "no",
"comments": "SSH server hostname or IP address"
},
{
"name": "port",
"title": "SSH Port",
"type": "long",
"nullable": "no",
"default": "22",
"comments": "SSH server port"
},
{
"name": "username",
"title": "Username",
"type": "str",
"length": 100,
"nullable": "no",
"comments": "SSH username"
},
{
"name": "remote_path",
"title": "Remote Path",
"type": "str",
"length": 255,
"nullable": "no",
"default": "~/.skills",
"comments": "Remote skills directory path"
},
{
"name": "auth_method",
"title": "Authentication Method",
"type": "str",
"length": 20,
"nullable": "no",
"default": "key",
"comments": "Authentication method: key or password"
},
{
"name": "ssh_key_path",
"title": "SSH Key Path",
"type": "str",
"length": 255,
"nullable": "yes",
"comments": "Path to SSH private key file (for key auth)"
},
{
"name": "description",
"title": "Description",
"type": "text",
"nullable": "yes",
"comments": "Description of the remote skill"
},
{
"name": "category",
"title": "Category",
"type": "str",
"length": 50,
"nullable": "yes",
"comments": "Skill category"
},
{
"name": "version",
"title": "Version",
"type": "str",
"length": 20,
"nullable": "no",
"default": "1.0.0",
"comments": "Skill version"
},
{
"name": "enabled",
"title": "Enabled",
"type": "str",
"length": 1,
"nullable": "no",
"default": "1",
"comments": "Whether skill is enabled (1=true, 0=false)"
},
{
"name": "last_deployed",
"title": "Last Deployed",
"type": "timestamp",
"nullable": "yes",
"comments": "Last deployment timestamp"
},
{
"name": "last_executed",
"title": "Last Executed",
"type": "timestamp",
"nullable": "yes",
"comments": "Last execution timestamp"
},
{
"name": "last_connected",
"title": "Last Connected",
"type": "timestamp",
"nullable": "yes",
"comments": "Last successful connection timestamp"
},
{
"name": "created_at",
"title": "Created At",
"type": "timestamp",
"nullable": "no",
"comments": "Creation timestamp"
},
{
"name": "updated_at",
"title": "Updated At",
"type": "timestamp",
"nullable": "no",
"comments": "Last update timestamp"
}
],
"indexes": [
{
"name": "idx_remote_skills_user",
"idxtype": "index",
"idxfields": ["user_id"]
},
{
"name": "idx_remote_skills_user_name",
"idxtype": "unique",
"idxfields": ["user_id", "name"]
},
{
"name": "idx_remote_skills_host",
"idxtype": "index",
"idxfields": ["host"]
}
],
"codes": []
}