Help us improve
Share bugs, ideas, or general feedback.
From lender
One-time lender profile setup — stores your identity, company, portfolio focus, LTV thresholds, tracked segments, and location so all skills stop re-asking.
npx claudepluginhub marketcheckhub/marketcheck-cowork-plugin --plugin lenderHow this command is triggered — by the user, by Claude, or both
Slash command
/lender:onboarding your name or companyThis command is limited to the following tools:
The summary Claude sees in its command listing — used to decide when to auto-load this command
Collect identity, portfolio focus, risk thresholds, tracked segments, and location. Persist to the `marketcheck-profile.md` project memory file. ## Step 0: Check for existing profile Read the `marketcheck-profile.md` project memory file. Parse the JSON content after the `---` frontmatter delimiter. If valid JSON: show summary, ask update or keep. If keep, stop. ## Step 1: Collect identity - "What is your name?" -> `user.name` - "What company?" -> `user.company` Use $ARGUMENTS as name or company if provided. ## Step 2: Collect country Ask: "US or UK?" Default US. Determines ZIP vs pos...
/onboardingCollects onboarding parameters interactively (scope, product type, metrics, rates) then optimizes post-signup flows, activation, and first-run experience.
/onboardingSet up PM Copilot — a guided wizard that builds your persistent memory profile so every future session is grounded in your product context
/onboardingDesigns or revises onboarding flows, tutorials, and first-session learning experiences, producing structured outputs with assumptions, risks, and tasks.
/onboardingGenerates onboarding guide for a team or project: overview via Glean, key people, vetted essential docs, and recent priorities.
/onboardingOnboards a new developer to a harness-managed project by invoking the harness-onboarding skill or following its SKILL.md workflow. Accepts optional --path argument.
Share bugs, ideas, or general feedback.
Collect identity, portfolio focus, risk thresholds, tracked segments, and location. Persist to the marketcheck-profile.md project memory file.
Read the marketcheck-profile.md project memory file. Parse the JSON content after the --- frontmatter delimiter. If valid JSON: show summary, ask update or keep. If keep, stop.
user.nameuser.companyUse $ARGUMENTS as name or company if provided.
Ask: "US or UK?" Default US. Determines ZIP vs postcode, available tools (US=full, UK=limited).
US: ZIP (5-digit), state (2-letter), optionally city. UK: Postcode, region/county.
Ask: "Primary business focus?" -> lender.portfolio_focus:
auto_loans -- retail auto lending (direct/indirect)leasing -- vehicle leasing / residual value managementfloor_plan -- floor plan financing for dealer inventoryPresent with defaults:
Store as lender.risk_ltv_threshold and lender.high_risk_ltv_threshold.
Ask: "Which vehicle segments to track for risk monitoring?" Suggest: SUV, Sedan, Truck, EV, Luxury, Subcompact. Store as lender.tracked_segments.
Ask: "Which states do you operate in?" (comma-separated, or "national"). Store as lender.tracked_states.
Write to the marketcheck-profile.md project memory file with this frontmatter:
---
name: marketcheck-profile
description: Full MarketCheck user profile — identity, role, location, preferences. Read by all plugin skills and commands.
type: user
---
Then the profile JSON:
{
"schema_version": "1.0",
"user_type": "lender",
"created_at": "[ISO]", "updated_at": "[ISO]",
"user": { "name": "", "company": "" },
"lender": {
"portfolio_focus": "auto_loans|leasing|floor_plan",
"risk_ltv_threshold": 100, "high_risk_ltv_threshold": 120,
"tracked_segments": [], "tracked_states": []
},
"location": {
"country": "US|UK", "zip": null, "postcode": null,
"state": null, "region": null, "city": null
},
"preferences": { "default_radius_miles": 75 }
}
Set null for non-applicable location fields.
Write a compact profile summary to your auto-memory file (MEMORY.md) so all future chat windows automatically know this user. Append or update the ## MarketCheck Profile section:
## MarketCheck Profile: Lender
- **User**: [name] | **Company**: [company] | **Focus**: [portfolio_focus]
- **Country**: [country] | **Location**: [zip/postcode], [state/region]
- **LTV thresholds**: warning=[risk_ltv]%, high-risk=[high_risk_ltv]%
- **Segments**: [tracked_segments list] | **States**: [tracked_states or "National"]
- **Profile**: marketcheck-profile.md (project memory)
Do not overwrite other memory content.
Show profile summary: name, company, focus, LTV thresholds, tracked segments, states, location.
Next steps:
UK users: UK data is active listings and recent cars only. ML pricing, sold analytics, VIN history are US-only.