Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions .changeset/member-profiles.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
---
---

Add member profiles with agent discovery and rich agent cards

- Agent cards now display agent type (Creative Agent, Sales Agent, Signals Agent)
- Show type-specific stats: formats for creative agents, products/publishers for sales agents
- Display both MCP and A2A protocol badges when agents support both
- Shared agent card component ensures consistency across edit profile, member detail, and member directory pages
- Default MEMBERSHIP_ENABLED to false for production safety
2 changes: 1 addition & 1 deletion conductor.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@
}
],
"scripts": {
"setup": "git config core.hooksPath .husky && npm install && uv sync && open -a Docker && sleep 5 && docker compose up -d postgres && sleep 2 && DB_PORT=$(docker compose port postgres 5432 | cut -d: -f2) && APP_PORT=$((50000 + RANDOM % 10000)) && echo \"DATABASE_URL=postgresql://adcp:localdev@localhost:$DB_PORT/adcp_registry\" >> .env.local && echo \"DATABASE_SSL=false\" >> .env.local && echo \"CONDUCTOR_PORT=$APP_PORT\" >> .env.local && npm run db:migrate"
"setup": "git config core.hooksPath .husky && npm install && uv sync && open -a Docker && sleep 5 && docker compose up -d postgres && sleep 2 && DB_PORT=$(docker compose port postgres 5432 | cut -d: -f2) && APP_PORT=$((50000 + RANDOM % 10000)) && echo \"DATABASE_URL=postgresql://adcp:localdev@localhost:$DB_PORT/adcp_registry\" >> .env.local && echo \"DATABASE_SSL=false\" >> .env.local && echo \"CONDUCTOR_PORT=$APP_PORT\" >> .env.local && cat ../../.env >> .env.local && npm run db:migrate"
}
}
Loading