-
Notifications
You must be signed in to change notification settings - Fork 6
docs: align sei-js references with current packages #67
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
c68b3ff
8ef5b98
dd059da
371ec54
45597ea
17b19a2
b45bfcd
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Large diffs are not rendered by default.
Large diffs are not rendered by default.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -208,7 +208,6 @@ | |
| "pages": [ | ||
| "evm/sei-js/index", | ||
| "evm/sei-js/create-sei", | ||
| "evm/sei-js/ledger", | ||
| "evm/sei-js/registry" | ||
| ] | ||
| }, | ||
|
|
@@ -1268,6 +1267,11 @@ | |
| "destination": "/evm/ledger-ethers", | ||
| "permanent": true | ||
| }, | ||
| { | ||
| "source": "/evm/sei-js/ledger", | ||
| "destination": "/evm/ledger-ethers", | ||
| "permanent": true | ||
| }, | ||
| { | ||
| "source": "/dev-ecosystem-providers/wallets", | ||
| "destination": "/learn/wallets", | ||
|
|
@@ -1579,27 +1583,62 @@ | |
| "permanent": true | ||
| }, | ||
| { | ||
| "source": "/:os(Users|home|root|etc|var|usr|tmp|dev)/:rest*", | ||
| "source": "/Users/*", | ||
| "destination": "/node/troubleshooting", | ||
| "permanent": true | ||
| }, | ||
| { | ||
| "source": "/home/*", | ||
| "destination": "/node/troubleshooting", | ||
| "permanent": true | ||
| }, | ||
| { | ||
| "source": "/root/*", | ||
| "destination": "/node/troubleshooting", | ||
| "permanent": true | ||
| }, | ||
| { | ||
| "source": "/etc/*", | ||
| "destination": "/node/troubleshooting", | ||
| "permanent": true | ||
| }, | ||
| { | ||
| "source": "/var/*", | ||
| "destination": "/node/troubleshooting", | ||
| "permanent": true | ||
| }, | ||
| { | ||
| "source": "/usr/*", | ||
| "destination": "/node/troubleshooting", | ||
| "permanent": true | ||
| }, | ||
| { | ||
| "source": "/sei-config-:rest(.*)", | ||
| "source": "/tmp/*", | ||
| "destination": "/node/troubleshooting", | ||
| "permanent": true | ||
| }, | ||
| { | ||
| "source": "/dev/*", | ||
| "destination": "/node/troubleshooting", | ||
| "permanent": true | ||
| }, | ||
| { | ||
| "source": "/sei-config-*", | ||
| "destination": "/node", | ||
| "permanent": true | ||
| }, | ||
| { | ||
| "source": "/sei-data-:rest(.*)", | ||
| "source": "/sei-data-*", | ||
| "destination": "/node", | ||
| "permanent": true | ||
| }, | ||
| { | ||
| "source": "/sei-backup-:rest(.*)", | ||
| "source": "/sei-backup-*", | ||
| "destination": "/node/troubleshooting", | ||
| "permanent": true | ||
| }, | ||
| { | ||
| "source": "/priv_validator_:rest(.*)", | ||
| "source": "/priv_validator_*", | ||
| "destination": "/node", | ||
| "permanent": true | ||
| }, | ||
|
|
@@ -1635,12 +1674,12 @@ | |
| }, | ||
| { | ||
| "source": "/agents", | ||
| "destination": "/llms/agents.md", | ||
| "destination": "/skill.md", | ||
| "permanent": true | ||
| }, | ||
| { | ||
| "source": "/agents.md", | ||
| "destination": "/llms/agents.md", | ||
| "source": "/llms/agents", | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. [nit] With |
||
| "destination": "/skill.md", | ||
| "permanent": true | ||
| }, | ||
| { | ||
|
|
@@ -1652,11 +1691,6 @@ | |
| "source": "/llms/skill", | ||
| "destination": "/skill.md", | ||
| "permanent": true | ||
| }, | ||
| { | ||
| "source": "/llms/skill.md", | ||
| "destination": "/skill.md", | ||
| "permanent": true | ||
| } | ||
| ], | ||
| "interaction": { | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[suggestion] Dropping
/agents.mdentirely is a bit of a shame — it's becoming the conventional URL for agent-facing instructions, and this is the one place it plausibly gets requested from outside.If the diagnosis in the PR body is right (Mintlify appends
.mdto a redirect whose source ends in.md), then the fix isn't "delete the entry" — it's to point the source at the extensionless destination and let Mintlify append:{ "source": "/agents.md", "destination": "/skill", "permanent": true }Worth one probe against
mint devbefore merging; if it resolves to/skill.md, you recover the URL for free. Same trick would apply to the removed/llms/skill.mdentry.