Skip to content
Skillv1.0.0

compare-vault-entry-vs-exit

Compare deposit and redeem conditions for a wallet on a public IXS ERC-4626 vault before taking action.

by IXS-Finance(0) 0 installs
Free
Sign in to install

Free account. Installing gives you the manifest plus copy-paste snippets.

See reviews

About

Imported from IXS-Finance/ixs-rwa-agent-skills (skills/compare-vault-entry-vs-exit/SKILL.md). Install upstream with npx skills add IXS-Finance/ixs-rwa-agent-skills --skill compare-vault-entry-vs-exit. Copyright stays with the author.

Compare Vault Entry Vs Exit

When To Use

Use this skill when the user wants to compare deposit and redeem conditions before deciding whether to enter, add to, or exit a public IXS ERC-4626 vault position.

Inputs

  • IXS_MCP_URL
  • IXS_VAULT_ADDRESS
  • IXS_VAULT_CHAIN_ID
  • wallet from an approved signer; use AGENT_PRIVATE_KEY only for isolated test or compatibility setups
  • target deposit asset amount
  • target redeem share amount

Trigger Examples

  • "Compare whether it looks better to deposit more or redeem right now."
  • "Show me the current deposit and redeem conditions for this vault and my wallet."

Procedure

  1. Call the MCP tool vault_get first and read settlement (sync for ManagedVault-kind vaults, async-erc7540 for ERC7540OperatedVault-kind vaults) — it changes how to interpret every read below.
  2. Read vault state needed for both entry and exit:
    • paused()
    • totalAssets()
    • availableAssets()
    • maxDeposit(receiver)
    • maxRedeem(owner)
  3. Read wallet state:
    • asset balance
    • share balance
    • allowance to the vault
  4. Read quote surfaces:
    • previewDeposit(assets)
    • previewRedeem(shares)
    • previewRedeemFee(shares)ManagedVault-kind only; do not call this on async-erc7540 vaults, it does not exist there
  5. Summarize:
    • whether deposit is currently allowed and sufficiently funded
    • whether redeem is currently within wallet and vault limits
    • expected deposit shares out
    • expected redeem assets out and fee (net-of-fee only, no separate fee figure, on async-erc7540 vaults)
    • allowance and liquidity constraints
  6. Highlight which blockers apply to entry, exit, or both — on async-erc7540 vaults, maxDeposit/maxRedeem always read 0 by design (the sync path is disabled, not blocked); say so instead of reporting entry/exit as unavailable.

Guardrails

  • Do not recommend an investment action as financial advice.
  • Keep read-only comparison separate from execution planning.
  • Call out uncertainty when wallet-specific inputs are missing.
  • On async-erc7540 vaults, treat previewDeposit/previewRedeem as non-binding estimates, not the figures that will actually apply — the real price is set when the corresponding request is finalized.

References

  • references/comparison-surface.md

Use it

Copy one of these into your project. Installing also returns the manifest and these snippets.

yaml
targets:
  - https://api.opensmartroute.ai/api/v1/registry/ixs-finance-ixs-rwa-agent-skills-compare-vault-entry-vs-exit/manifest   # or paste the manifest below

Manifest

An Open Capability Manifest: the router reads it to know what this does, what it costs and when to pick it.

ixs-finance-ixs-rwa-agent-skills-compare-vault-entry-vs-exit.ocm.jsonjson
{
  "ocm": "1",
  "id": "ixs-finance-ixs-rwa-agent-skills-compare-vault-entry-vs-exit",
  "kind": "skill",
  "name": "compare-vault-entry-vs-exit",
  "description": "Compare deposit and redeem conditions for a wallet on a public IXS ERC-4626 vault before taking action.",
  "publisher": "IXS-Finance",
  "version": "1.0.0",
  "capabilities": {
    "domains": [
      "general"
    ],
    "tags": [
      "skill-md",
      "vaults",
      "analysis",
      "decision-support",
      "mcp",
      "github"
    ],
    "languages": [
      "en"
    ]
  },
  "quality_prior": 0.6,
  "examples": [
    "Compare deposit and redeem conditions for a wallet on a public IXS ERC-4626 vault before taking action."
  ],
  "primary": false,
  "metadata": {
    "source": {
      "provider": "github",
      "repository": "https://github.com/IXS-Finance/ixs-rwa-agent-skills",
      "path": "skills/compare-vault-entry-vs-exit/SKILL.md",
      "ref": "e3afa114d379c2dd6a9c7a7837b56f7f89445bd1",
      "url": "https://github.com/IXS-Finance/ixs-rwa-agent-skills/blob/e3afa114d379c2dd6a9c7a7837b56f7f89445bd1/skills/compare-vault-entry-vs-exit/SKILL.md",
      "key": "IXS-Finance/ixs-rwa-agent-skills/skills/compare-vault-entry-vs-exit/SKILL.md"
    }
  },
  "instructions": "# Compare Vault Entry Vs Exit\n\n## When To Use\n\nUse this skill when the user wants to compare deposit and redeem conditions before deciding whether to enter, add to, or exit a public IXS ERC-4626 vault position.\n\n## Inputs\n\n- `IXS_MCP_URL`\n- `IXS_VAULT_ADDRESS`\n- `IXS_VAULT_CHAIN_ID`\n- wallet from an approved signer; use `AGENT_PRIVATE_KEY` only for isolated test or compatibility setups\n- target deposit asset amount\n- target redeem share amount\n\n## Trigger Examples\n\n- \"Compare whether it looks better to deposit more or redeem right now.\"\n- \"Show me the current deposit and redeem conditions for ",
  "cost": {
    "context_tokens": 583
  }
}

Fetch it by URL: GET /api/v1/registry/ixs-finance-ixs-rwa-agent-skills-compare-vault-entry-vs-exit/manifest?version=1.0.0

Reviews

Star ratings from people who tried it. One review per account; edit yours any time.

No reviews yet. Install it, try it, and be the first to rate it.

compare-vault-entry-vs-exit - Skill - OpenSmartRoute