소스 정보
- 저장소
- NousResearch/hermes-agent
- 최근 소스 활동
- 2026년 9월 8일 20:39
- 감지된 SKILL.md 언어
- 영어
- 스타
- 246,398
- 포크
- 51,557
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/NousResearch/hermes-agent --skill property-listings명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SKILL.md 표시 중
| name | property-listings |
| description | Present property and rental listings as desktop cards. |
| version | 0.1.0 |
| author | Teknium (teknium1), Hermes Agent |
| license | MIT |
| platforms | ["linux","macos","windows"] |
| metadata | {"hermes":{"tags":["property","rental","real-estate","listings","desktop","cards"],"category":"productivity","related_skills":[]}} |
Present researched properties as browsable cards in the Hermes desktop transcript. This is a presentation recipe, not a listing search service or an investment valuation.
web_search, web_extract, or the browser tools available in this session.Install this optional skill through the Skills catalog, or use terminal:
hermes skills install official/productivity/property-listings
Load it with skill_view(name="property-listings") when presenting listings.
Installing does not retrofit the running conversation's skill index; start a new
conversation for automatic discovery, or explicitly load the installed skill now.
Emit a fenced code block whose language is listing and whose body is valid JSON.
Use one object, an array of objects, or { "listings": [...] } for a comparison.
| Field | Shape and meaning |
|---|---|
address | Required nonempty street address or property headline. |
price | Formatted string including currency and rental period, if applicable. |
beds, baths | Positive numeric counts; omit unknown values. |
size | Formatted area including units. |
note | Why this property is worth a look. |
facts | Array of short verified specs or amenities. |
catches | Array of risks or questions to verify before a tour. |
images | Direct HTTPS photo URLs in listing order; the first is the hero. |
links | Array of { "label": "Source", "url": "https://..." } detail-page links, not search-result URLs. |
listing fence for every property presented, including follow-ups and
re-rankings. Keep facts short and put unresolved concerns in catches.{
"address": "12 Example Lane",
"price": "$2,400/mo",
"beds": 3,
"baths": 2.5,
"size": "1,600 sqft",
"note": "Fits the requested space and budget.",
"facts": ["12-month lease", "Covered parking"],
"catches": ["Verify pet policy and total move-in fees"],
"images": ["https://example.com/property/front.jpg", "https://example.com/property/kitchen.jpg"],
"links": [{"label": "Listing details", "url": "https://example.com/property/12"}]
}