Rank
70
AI Agents & MCPs & AI Workflow Automation • (~400 MCP servers for AI agents) • AI Automation / AI Agent with MCPs • AI Workflows & AI Agents • MCPs for AI Agents
Traction
No public download signal
Freshness
Updated 2d ago
Crawler Summary
Interact with I'm Pretty Amazing (imprettyamazing.com) — a platform for tracking and celebrating accomplishments. Use when: posting wins, tracking achievements, managing profile, commenting on or liking wins, following users, submitting feedback, or proactively suggesting a win after the user accomplishes something notable. --- name: imprettyamazing description: "Interact with I'm Pretty Amazing (imprettyamazing.com) — a platform for tracking and celebrating accomplishments. Use when: posting wins, tracking achievements, managing profile, commenting on or liking wins, following users, submitting feedback, or proactively suggesting a win after the user accomplishes something notable." --- I'm Pretty Amazing Interact with $1 to track acco Published capability contract available. No trust telemetry is available yet. Last updated 2/24/2026.
Freshness
Last checked 2/24/2026
Best For
Contract is available with explicit auth and schema references.
Not Ideal For
imprettyamazing is not ideal for teams that need stronger public trust telemetry, lower setup complexity, or more explicit contract coverage before production rollout.
Evidence Sources Checked
editorial-content, capability-contract, runtime-metrics, public facts pack
Interact with I'm Pretty Amazing (imprettyamazing.com) — a platform for tracking and celebrating accomplishments. Use when: posting wins, tracking achievements, managing profile, commenting on or liking wins, following users, submitting feedback, or proactively suggesting a win after the user accomplishes something notable. --- name: imprettyamazing description: "Interact with I'm Pretty Amazing (imprettyamazing.com) — a platform for tracking and celebrating accomplishments. Use when: posting wins, tracking achievements, managing profile, commenting on or liking wins, following users, submitting feedback, or proactively suggesting a win after the user accomplishes something notable." --- I'm Pretty Amazing Interact with $1 to track acco
Public facts
6
Change events
1
Artifacts
0
Freshness
Feb 24, 2026
Published capability contract available. No trust telemetry is available yet. Last updated 2/24/2026.
Trust score
Unknown
Compatibility
OpenClaw
Freshness
Feb 24, 2026
Vendor
Macksmind
Artifacts
0
Benchmarks
0
Last release
Unpublished
Key links, install path, and a quick operational read before the deeper crawl record.
Summary
Published capability contract available. No trust telemetry is available yet. Last updated 2/24/2026.
Setup snapshot
git clone https://github.com/MacksMind/openclaw-skill-imprettyamazing.gitSetup complexity is LOW. This package is likely designed for quick installation with minimal external side-effects.
Final validation: Expose the agent to a mock request payload inside a sandbox and trace the network egress before allowing access to real customer data.
Everything public we have scraped or crawled about this agent, grouped by evidence type with provenance.
Vendor
Macksmind
Protocol compatibility
OpenClaw
Auth modes
api_key
Machine-readable schemas
OpenAPI or schema references published
Handshake status
UNKNOWN
Crawlable docs
6 indexed pages on the official domain
Merged public release, docs, artifact, benchmark, pricing, and trust refresh events.
Extracted files, examples, snippets, parameters, dependencies, permissions, and artifact metadata.
Extracted files
0
Examples
6
Snippets
0
Languages
typescript
Parameters
markdown
### I'm Pretty Amazing - **Username:** their-username (optional) - **Access Token Cookie:** eyJhbGciOi... - **Refresh Token Cookie:** eyJhbGciOi... (optional but recommended) - **Access Token Expires At (UTC):** 2026-03-21T03:04:46Z
bash
IPA_COOKIE_FILE="/tmp/ipa-cookies-$$.txt" ACCESS_TOKEN="<Access Token Cookie from TOOLS.md>" REFRESH_TOKEN="<Refresh Token Cookie from TOOLS.md>" cat > "$IPA_COOKIE_FILE" <<EOF # Netscape HTTP Cookie File .imprettyamazing.com TRUE / TRUE 0 access_token $ACCESS_TOKEN .imprettyamazing.com TRUE / TRUE 0 refresh_token $REFRESH_TOKEN EOF
bash
curl -s -X POST https://api.imprettyamazing.com/auth/login \
-H 'Content-Type: application/json' \
-d '{"email":"EMAIL","password":"PASSWORD"}' \
-c "$IPA_COOKIE_FILE"bash
IPA_COOKIE_FILE="/tmp/ipa-cookies-$$.txt"
curl -s -X POST https://api.imprettyamazing.com/auth/login \
-H 'Content-Type: application/json' \
-d '{"email":"EMAIL","password":"PASSWORD"}' \
-c "$IPA_COOKIE_FILE"bash
ACCESS_TOKEN="$(awk '$6=="access_token" {print $7}' "$IPA_COOKIE_FILE" | tail -n 1)"
REFRESH_TOKEN="$(awk '$6=="refresh_token" {print $7}' "$IPA_COOKIE_FILE" | tail -n 1)"
test -n "$ACCESS_TOKEN" || { echo "Missing access_token in cookie jar"; exit 1; }bash
# ACCESS_TOKEN should be the cookie value only (no "access_token=" prefix)
ACCESS_TOKEN="..."
ACCESS_TOKEN_EXPIRES_AT_UTC="$(python3 - <<'PY'
import base64, json, os
token = os.environ["ACCESS_TOKEN"]
payload = token.split('.')[1]
payload += '=' * (-len(payload) % 4)
data = json.loads(base64.urlsafe_b64decode(payload.encode()).decode())
from datetime import datetime, timezone
print(datetime.fromtimestamp(data['exp'], tz=timezone.utc).strftime('%Y-%m-%dT%H:%M:%SZ'))
PY
)"
echo "$ACCESS_TOKEN_EXPIRES_AT_UTC"Full documentation captured from public sources, including the complete README when available.
Docs source
GITHUB OPENCLEW
Editorial quality
ready
Interact with I'm Pretty Amazing (imprettyamazing.com) — a platform for tracking and celebrating accomplishments. Use when: posting wins, tracking achievements, managing profile, commenting on or liking wins, following users, submitting feedback, or proactively suggesting a win after the user accomplishes something notable. --- name: imprettyamazing description: "Interact with I'm Pretty Amazing (imprettyamazing.com) — a platform for tracking and celebrating accomplishments. Use when: posting wins, tracking achievements, managing profile, commenting on or liking wins, following users, submitting feedback, or proactively suggesting a win after the user accomplishes something notable." --- I'm Pretty Amazing Interact with $1 to track acco
Interact with imprettyamazing.com to track accomplishments.
On first use, check TOOLS.md for an ### I'm Pretty Amazing section.
Persisted auth data should include cookie values and JWT expiry metadata so auth can be reused until expiration:
### I'm Pretty Amazing
- **Username:** their-username (optional)
- **Access Token Cookie:** eyJhbGciOi...
- **Refresh Token Cookie:** eyJhbGciOi... (optional but recommended)
- **Access Token Expires At (UTC):** 2026-03-21T03:04:46Z
Token handling:
If auth cookies are missing or expired:
POST /auth/register. Remind them to verify their email. If they want in-chat help, ask them to paste the verification token (or tokenized verification URL) from their email, then call POST /auth/verify-email with that token.POST /auth/login.access_token, refresh_token (if present), and access-token expiry in TOOLS.md. If they decline, use the cookie file for this session only.Never hardcode credentials in commands.
Session cookies are required for most endpoints.
No-login endpoints:
POST /auth/registerPOST /auth/loginPOST /auth/forgot-passwordPOST /auth/reset-passwordPOST /auth/verify-emailCookie-auth endpoints:
POST /auth/resend-verificationGET /auth/meFor cookie-auth endpoints, follow these steps:
Step 0 — Reuse persisted auth if still valid (preferred):
Access Token Cookie (and Refresh Token Cookie if available) from TOOLS.md.Access Token Cookie is present and Access Token Expires At (UTC) is a valid ISO 8601 timestamp (YYYY-MM-DDTHH:MM:SSZ). If either is missing or malformed, continue to Step 1.Access Token Expires At (UTC) is in the future, rebuild a cookie jar from those values and use that jar for requests.Canonical cookie-jar rebuild snippet (substitute persisted values from TOOLS.md):
IPA_COOKIE_FILE="/tmp/ipa-cookies-$$.txt"
ACCESS_TOKEN="<Access Token Cookie from TOOLS.md>"
REFRESH_TOKEN="<Refresh Token Cookie from TOOLS.md>"
cat > "$IPA_COOKIE_FILE" <<EOF
# Netscape HTTP Cookie File
.imprettyamazing.com TRUE / TRUE 0 access_token $ACCESS_TOKEN
.imprettyamazing.com TRUE / TRUE 0 refresh_token $REFRESH_TOKEN
EOF
If Refresh Token Cookie is unavailable, omit the REFRESH_TOKEN assignment and the refresh_token line.
Step 1 — Login (do this once, before any other calls):
IPA_COOKIE_FILE="/tmp/ipa-cookies-$$.txt"
curl -s -X POST https://api.imprettyamazing.com/auth/login \
-H 'Content-Type: application/json' \
-d '{"email":"EMAIL","password":"PASSWORD"}' \
-c "$IPA_COOKIE_FILE"
The -c flag saves auth cookies (access_token and refresh_token) to the cookie file.
After login, extract cookie values. If the user opted in to session persistence (see First-Time Setup step 7), persist them to TOOLS.md with access-token expiry (from JWT exp).
Canonical cookie extraction snippet (from curl cookie jar):
ACCESS_TOKEN="$(awk '$6=="access_token" {print $7}' "$IPA_COOKIE_FILE" | tail -n 1)"
REFRESH_TOKEN="$(awk '$6=="refresh_token" {print $7}' "$IPA_COOKIE_FILE" | tail -n 1)"
test -n "$ACCESS_TOKEN" || { echo "Missing access_token in cookie jar"; exit 1; }
Canonical expiry extraction snippet (from access_token):
# ACCESS_TOKEN should be the cookie value only (no "access_token=" prefix)
ACCESS_TOKEN="..."
ACCESS_TOKEN_EXPIRES_AT_UTC="$(python3 - <<'PY'
import base64, json, os
token = os.environ["ACCESS_TOKEN"]
payload = token.split('.')[1]
payload += '=' * (-len(payload) % 4)
data = json.loads(base64.urlsafe_b64decode(payload.encode()).decode())
from datetime import datetime, timezone
print(datetime.fromtimestamp(data['exp'], tz=timezone.utc).strftime('%Y-%m-%dT%H:%M:%SZ'))
PY
)"
echo "$ACCESS_TOKEN_EXPIRES_AT_UTC"
Persist ACCESS_TOKEN_EXPIRES_AT_UTC as Access Token Expires At (UTC) in TOOLS.md.
Persist ACCESS_TOKEN as Access Token Cookie and REFRESH_TOKEN (if present) as Refresh Token Cookie.
Step 2 — Make API calls (reuse the cookie file):
curl -s https://api.imprettyamazing.com/wins/my-wins \
-b "$IPA_COOKIE_FILE"
Use -b "$IPA_COOKIE_FILE" on every cookie-auth request.
If only persisted cookie values are available (no cookie file yet), you can call with an explicit cookie header (substitute values from TOOLS.md):
curl -s https://api.imprettyamazing.com/wins/my-wins \
-H "Cookie: access_token=<Access Token Cookie from TOOLS.md>; refresh_token=<Refresh Token Cookie from TOOLS.md>"
Step 3 — Handle expired sessions:
If any call returns {"statusCode": 401, ...}:
POST /auth/login again and overwrite the cookie file with -c.IPA_COOKIE_FILE. If session persistence was previously opted in, update access_token, refresh_token, and Access Token Expires At (UTC) in TOOLS.md.Rules:
-b "$IPA_COOKIE_FILE" for cookie-auth endpoints.access_token), but authentication is performed by sending cookies.Before any state-changing action, get explicit user confirmation. This includes:
POST, PATCH, and DELETE calls (for example creating/updating/deleting wins, comments, follows, blocks, profile updates, feedback)POST /auth/registerRead-only GET requests do not require additional confirmation.
Content-Type: application/json) except POST /profile/avatar and POST /profile/cover (multipart form data for file uploads).DELETE responses).{"statusCode": <code>, "message": {"message": [...], "error": "...", "statusCode": <code>}}. Always check for statusCode in the response.Login first (see Authentication Pattern above), then:
IPA_COOKIE_FILE="/tmp/ipa-cookies-$$.txt"
curl -s -X POST https://api.imprettyamazing.com/wins \
-b "$IPA_COOKIE_FILE" \
-H 'Content-Type: application/json' \
-d '{"content":"Your win here","type":"PERSONAL","visibility":"PUBLIC"}'
# Success response:
# {"id":"...","content":"Your win here","type":"PERSONAL","visibility":"PUBLIC","status":"APPROVED",...}
#
# Error response:
# {"statusCode":400,"message":{"message":["content should not be empty"],"error":"Bad Request","statusCode":400}}
Wins can optionally include a STAR (Situation, Task, Action, Result) breakdown. Pass a starFormat object when creating or updating a win.
All four fields are required when starFormat is provided — omitting any field returns a 500 error.
curl -s -X POST https://api.imprettyamazing.com/wins \
-b "$IPA_COOKIE_FILE" \
-H 'Content-Type: application/json' \
-d '{
"content": "Your win here",
"type": "PROFESSIONAL",
"visibility": "PUBLIC",
"tags": ["tag1", "tag2"],
"starFormat": {
"situation": "What was the context or challenge?",
"task": "What needed to be done?",
"action": "What did you do?",
"result": "What was the outcome?"
}
}'
STAR format can also be added to existing wins via PATCH:
curl -s -X PATCH https://api.imprettyamazing.com/wins/:id \
-b "$IPA_COOKIE_FILE" \
-H 'Content-Type: application/json' \
-d '{
"starFormat": {
"situation": "...",
"task": "...",
"action": "...",
"result": "..."
}
}'
id, winId, situation, task, action, result, createdAt, updatedAt
PERSONAL, PROFESSIONAL, HEALTH, SOCIAL, CREATIVE, LEARNING
PUBLIC (visible to all users) or PRIVATE (only visible to the poster).
All cookie-auth actions require -b "$IPA_COOKIE_FILE" after login. The API reference at references/api.md is the complete endpoint documentation. Read it before using any endpoint not shown above.
PATCH /wins/:id (JSON body), DELETE /wins/:idPOST /wins/:id/comments with {"content": "..."}, GET /wins/:id/commentsPOST /wins/:id/like, DELETE /wins/:id/like (toggle)POST /follows/:userId, DELETE /follows/:userIdPATCH /profile (JSON: username, bio max 500 chars, location, website)POST /profile/avatar (multipart avatar), POST /profile/cover (multipart cover, keep file small)POST /feedback with {"category": "BUG|FEATURE_REQUEST|GENERAL", "message": "...", "pageUrl": "...", "pageContext": "..."}If the user asks to log out or clear their session, remove the ### I'm Pretty Amazing section from TOOLS.md and delete any /tmp/ipa-cookies-*.txt files.
When the user accomplishes something notable — ships a feature, closes a deal, solves a hard problem, learns something new — suggest posting it as a win. Draft the content and confirm before posting.
Machine endpoints, protocol fit, contract coverage, invocation examples, and guardrails for agent-to-agent use.
Contract coverage
Status
ready
Auth
api_key
Streaming
No
Data region
global
Protocol support
Requires: openclew, lang:typescript
Forbidden: none
Guardrails
Operational confidence: medium
curl -s "https://xpersona.co/api/v1/agents/macksmind-openclaw-skill-imprettyamazing/snapshot"
curl -s "https://xpersona.co/api/v1/agents/macksmind-openclaw-skill-imprettyamazing/contract"
curl -s "https://xpersona.co/api/v1/agents/macksmind-openclaw-skill-imprettyamazing/trust"
Trust and runtime signals, benchmark suites, failure patterns, and practical risk constraints.
Trust signals
Handshake
UNKNOWN
Confidence
unknown
Attempts 30d
unknown
Fallback rate
unknown
Runtime metrics
Observed P50
unknown
Observed P95
unknown
Rate limit
unknown
Estimated cost
unknown
Every public screenshot, visual asset, demo link, and owner-provided destination tied to this agent.
Neighboring agents from the same protocol and source ecosystem for comparison and shortlist building.
Rank
70
AI Agents & MCPs & AI Workflow Automation • (~400 MCP servers for AI agents) • AI Automation / AI Agent with MCPs • AI Workflows & AI Agents • MCPs for AI Agents
Traction
No public download signal
Freshness
Updated 2d ago
Rank
70
AI productivity studio with smart chat, autonomous agents, and 300+ assistants. Unified access to frontier LLMs
Traction
No public download signal
Freshness
Updated 5d ago
Rank
70
Free, local, open-source 24/7 Cowork app and OpenClaw for Gemini CLI, Claude Code, Codex, OpenCode, Qwen Code, Goose CLI, Auggie, and more | 🌟 Star if you like it!
Traction
No public download signal
Freshness
Updated 6d ago
Rank
70
The Frontend for Agents & Generative UI. React + Angular
Traction
No public download signal
Freshness
Updated 23d ago
Contract JSON
{
"contractStatus": "ready",
"authModes": [
"api_key"
],
"requires": [
"openclew",
"lang:typescript"
],
"forbidden": [],
"supportsMcp": false,
"supportsA2a": false,
"supportsStreaming": false,
"inputSchemaRef": "https://github.com/MacksMind/openclaw-skill-imprettyamazing#input",
"outputSchemaRef": "https://github.com/MacksMind/openclaw-skill-imprettyamazing#output",
"dataRegion": "global",
"contractUpdatedAt": "2026-02-24T19:44:14.510Z",
"sourceUpdatedAt": "2026-02-24T19:44:14.510Z",
"freshnessSeconds": 4420629
}Invocation Guide
{
"preferredApi": {
"snapshotUrl": "https://xpersona.co/api/v1/agents/macksmind-openclaw-skill-imprettyamazing/snapshot",
"contractUrl": "https://xpersona.co/api/v1/agents/macksmind-openclaw-skill-imprettyamazing/contract",
"trustUrl": "https://xpersona.co/api/v1/agents/macksmind-openclaw-skill-imprettyamazing/trust"
},
"curlExamples": [
"curl -s \"https://xpersona.co/api/v1/agents/macksmind-openclaw-skill-imprettyamazing/snapshot\"",
"curl -s \"https://xpersona.co/api/v1/agents/macksmind-openclaw-skill-imprettyamazing/contract\"",
"curl -s \"https://xpersona.co/api/v1/agents/macksmind-openclaw-skill-imprettyamazing/trust\""
],
"jsonRequestTemplate": {
"query": "summarize this repo",
"constraints": {
"maxLatencyMs": 2000,
"protocolPreference": [
"OPENCLEW"
]
}
},
"jsonResponseTemplate": {
"ok": true,
"result": {
"summary": "...",
"confidence": 0.9
},
"meta": {
"source": "GITHUB_OPENCLEW",
"generatedAt": "2026-04-16T23:41:23.880Z"
}
},
"retryPolicy": {
"maxAttempts": 3,
"backoffMs": [
500,
1500,
3500
],
"retryableConditions": [
"HTTP_429",
"HTTP_503",
"NETWORK_TIMEOUT"
]
}
}Trust JSON
{
"status": "unavailable",
"handshakeStatus": "UNKNOWN",
"verificationFreshnessHours": null,
"reputationScore": null,
"p95LatencyMs": null,
"successRate30d": null,
"fallbackRate": null,
"attempts30d": null,
"trustUpdatedAt": null,
"trustConfidence": "unknown",
"sourceUpdatedAt": null,
"freshnessSeconds": null
}Capability Matrix
{
"rows": [
{
"key": "OPENCLEW",
"type": "protocol",
"support": "unknown",
"confidenceSource": "profile",
"notes": "Listed on profile"
},
{
"key": "be",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
},
{
"key": "access",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
},
{
"key": "call",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
},
{
"key": "optionally",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
},
{
"key": "also",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
}
],
"flattenedTokens": "protocol:OPENCLEW|unknown|profile capability:be|supported|profile capability:access|supported|profile capability:call|supported|profile capability:optionally|supported|profile capability:also|supported|profile"
}Facts JSON
[
{
"factKey": "docs_crawl",
"category": "integration",
"label": "Crawlable docs",
"value": "6 indexed pages on the official domain",
"href": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceUrl": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceType": "search_document",
"confidence": "medium",
"observedAt": "2026-04-15T05:03:46.393Z",
"isPublic": true
},
{
"factKey": "protocols",
"category": "compatibility",
"label": "Protocol compatibility",
"value": "OpenClaw",
"href": "https://xpersona.co/api/v1/agents/macksmind-openclaw-skill-imprettyamazing/contract",
"sourceUrl": "https://xpersona.co/api/v1/agents/macksmind-openclaw-skill-imprettyamazing/contract",
"sourceType": "contract",
"confidence": "medium",
"observedAt": "2026-02-24T19:44:14.510Z",
"isPublic": true
},
{
"factKey": "auth_modes",
"category": "compatibility",
"label": "Auth modes",
"value": "api_key",
"href": "https://xpersona.co/api/v1/agents/macksmind-openclaw-skill-imprettyamazing/contract",
"sourceUrl": "https://xpersona.co/api/v1/agents/macksmind-openclaw-skill-imprettyamazing/contract",
"sourceType": "contract",
"confidence": "high",
"observedAt": "2026-02-24T19:44:14.510Z",
"isPublic": true
},
{
"factKey": "schema_refs",
"category": "artifact",
"label": "Machine-readable schemas",
"value": "OpenAPI or schema references published",
"href": "https://github.com/MacksMind/openclaw-skill-imprettyamazing#input",
"sourceUrl": "https://xpersona.co/api/v1/agents/macksmind-openclaw-skill-imprettyamazing/contract",
"sourceType": "contract",
"confidence": "high",
"observedAt": "2026-02-24T19:44:14.510Z",
"isPublic": true
},
{
"factKey": "vendor",
"category": "vendor",
"label": "Vendor",
"value": "Macksmind",
"href": "https://github.com/MacksMind/openclaw-skill-imprettyamazing",
"sourceUrl": "https://github.com/MacksMind/openclaw-skill-imprettyamazing",
"sourceType": "profile",
"confidence": "medium",
"observedAt": "2026-02-24T19:43:14.176Z",
"isPublic": true
},
{
"factKey": "handshake_status",
"category": "security",
"label": "Handshake status",
"value": "UNKNOWN",
"href": "https://xpersona.co/api/v1/agents/macksmind-openclaw-skill-imprettyamazing/trust",
"sourceUrl": "https://xpersona.co/api/v1/agents/macksmind-openclaw-skill-imprettyamazing/trust",
"sourceType": "trust",
"confidence": "medium",
"observedAt": null,
"isPublic": true
}
]Change Events JSON
[
{
"eventType": "docs_update",
"title": "Docs refreshed: Sign in to GitHub · GitHub",
"description": "Fresh crawlable documentation was indexed for the official domain.",
"href": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceUrl": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceType": "search_document",
"confidence": "medium",
"observedAt": "2026-04-15T05:03:46.393Z",
"isPublic": true
}
]Sponsored
Ads related to imprettyamazing and adjacent AI workflows.