humanpages 1.4.3 → 1.4.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/dist/tools.js +2 -2
  2. package/package.json +1 -1
package/dist/tools.js CHANGED
@@ -943,10 +943,10 @@ export function createServer() {
943
943
  const displayLocation = h.locationGranularity === 'neighborhood' && h.neighborhood && h.location
944
944
  ? `${h.neighborhood}, ${h.location}`
945
945
  : h.location || 'Location not specified';
946
- const displayName = h.name || h.username || 'Name hidden';
946
+ const displayName = h.username || 'Anonymous';
947
947
  const jobsCompleted = rep?.jobsCompleted || 0;
948
948
  const jobsBadge = jobsCompleted > 0 ? ` | 🏆 ${jobsCompleted} job${jobsCompleted !== 1 ? 's' : ''} completed` : '';
949
- return `- **${displayName}**${h.username && h.name ? ` (@${h.username})` : ''} [${displayLocation}]
949
+ return `- **${displayName}** | human_id: \`${h.id}\` [${displayLocation}]
950
950
  ${h.isAvailable ? '✅ Available' : '❌ Busy'} | ${rateDisplay} | ${rating}${jobsBadge}
951
951
  ${humanityStatus}
952
952
  Skills: ${h.skills.join(', ') || 'None listed'}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "humanpages",
3
- "version": "1.4.3",
3
+ "version": "1.4.4",
4
4
  "mcpName": "io.github.human-pages-ai/humanpages",
5
5
  "description": "MCP server (+ OpenClaw SKILL.md) that gives AI agents access to real-world people who listed themselves to be hired by agents. 31 tools including search by skill/location/equipment, job offers, job board listings, in-job messaging, streaming payments, and agent funding.",
6
6
  "main": "dist/index.js",