From dca8cae44199fdb6d20f2109d87f85d41882f9e7 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Fri, 23 Jan 2026 03:00:19 +0000 Subject: [PATCH 1/4] Initial plan From 103d3e3ae7692e68b75b56604d2b60fdb134918f Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Fri, 23 Jan 2026 03:02:57 +0000 Subject: [PATCH 2/4] Fix lychee.toml: change verbose from boolean to string Co-authored-by: hotlong <50353452+hotlong@users.noreply.github.com> --- lychee.toml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lychee.toml b/lychee.toml index e08261c..a3c55c7 100644 --- a/lychee.toml +++ b/lychee.toml @@ -21,7 +21,8 @@ follow_redirects = true include_fragments = false # Verbose output -verbose = true +# Accepts log level: "error", "warn", "info", "debug", "trace" +verbose = "info" # Remap internal documentation links to actual file paths # Maps /docs/* routes to content/docs/*.mdx or content/docs/*.md files From 2657c67212a076ba11ee70b28f8f92a5d759ca4e Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Fri, 23 Jan 2026 03:04:34 +0000 Subject: [PATCH 3/4] Add .lycheecache to .gitignore Co-authored-by: hotlong <50353452+hotlong@users.noreply.github.com> --- .gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.gitignore b/.gitignore index a6895ec..b0a940a 100644 --- a/.gitignore +++ b/.gitignore @@ -30,6 +30,9 @@ coverage/ yarn-debug.log* yarn-error.log* +# Lychee link checker cache +.lycheecache + # Testing coverage/ From 8c9bfaab1d06c93af40e16d2d1577811a423d3f9 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Fri, 23 Jan 2026 03:29:21 +0000 Subject: [PATCH 4/4] Fix broken links: replace /discussions with /issues and update task-manager reference Co-authored-by: hotlong <50353452+hotlong@users.noreply.github.com> --- content/blog/metadata-driven-architecture.mdx | 2 +- content/blog/protocol-first-development.mdx | 2 +- content/docs/faq.mdx | 2 +- content/docs/quick-start/build-first-app.mdx | 4 ++-- content/docs/specifications/index.mdx | 2 +- content/docs/troubleshooting.mdx | 2 +- content/docs/tutorials.mdx | 4 ++-- 7 files changed, 9 insertions(+), 9 deletions(-) diff --git a/content/blog/metadata-driven-architecture.mdx b/content/blog/metadata-driven-architecture.mdx index a26383f..d4c69a5 100644 --- a/content/blog/metadata-driven-architecture.mdx +++ b/content/blog/metadata-driven-architecture.mdx @@ -584,4 +584,4 @@ ObjectStack is our answer. --- -*Want to dive deeper? Explore our [technical specifications](/docs/specifications) or join the discussion on [GitHub](https://github.com/objectstack-ai/spec/discussions).* +*Want to dive deeper? Explore our [technical specifications](/docs/specifications) or join the discussion on [GitHub](https://github.com/objectstack-ai/spec/issues).* diff --git a/content/blog/protocol-first-development.mdx b/content/blog/protocol-first-development.mdx index 2f63022..da257f9 100644 --- a/content/blog/protocol-first-development.mdx +++ b/content/blog/protocol-first-development.mdx @@ -849,4 +849,4 @@ Join us in building it. --- -*Ready to build on ObjectStack? Check out our [Getting Started Guide](/docs/guides/getting-started) or join the conversation on [GitHub Discussions](https://github.com/objectstack-ai/spec/discussions).* +*Ready to build on ObjectStack? Check out our [Getting Started Guide](/docs/guides/getting-started) or join the conversation on [GitHub Issues](https://github.com/objectstack-ai/spec/issues).* diff --git a/content/docs/faq.mdx b/content/docs/faq.mdx index 77ff46f..c1d8759 100644 --- a/content/docs/faq.mdx +++ b/content/docs/faq.mdx @@ -307,6 +307,6 @@ Field.lookup({ ## Still Have Questions? - 📖 Check the [Guides](/docs/guides/getting-started) -- 💬 Ask in [GitHub Discussions](https://github.com/objectstack-ai/spec/discussions) +- 💬 Ask in [GitHub Issues](https://github.com/objectstack-ai/spec/issues) - 🐛 Report bugs in [GitHub Issues](https://github.com/objectstack-ai/spec/issues) - 📧 Email: support@objectstack.dev (for urgent issues) diff --git a/content/docs/quick-start/build-first-app.mdx b/content/docs/quick-start/build-first-app.mdx index 01f33b3..e20a705 100644 --- a/content/docs/quick-start/build-first-app.mdx +++ b/content/docs/quick-start/build-first-app.mdx @@ -363,5 +363,5 @@ All schemas are validated at build time using Zod. Check the error message for w ## Full Code -The complete source code for this tutorial is available at: -- [GitHub: examples/task-manager](https://github.com/objectstack-ai/spec/tree/main/examples/task-manager) +The complete source code for a similar example is available at: +- [GitHub: examples/todo](https://github.com/objectstack-ai/spec/tree/main/examples/todo) diff --git a/content/docs/specifications/index.mdx b/content/docs/specifications/index.mdx index dff4982..1e040cd 100644 --- a/content/docs/specifications/index.mdx +++ b/content/docs/specifications/index.mdx @@ -226,7 +226,7 @@ Example: Want to propose changes or additions? 1. **Read:** [Contributing Guide](https://github.com/objectstack-ai/spec/blob/main/CONTRIBUTING.md) -2. **Discuss:** [GitHub Discussions](https://github.com/objectstack-ai/spec/discussions) +2. **Discuss:** [GitHub Issues](https://github.com/objectstack-ai/spec/issues) 3. **Propose:** [Submit an RFC](https://github.com/objectstack-ai/spec/issues/new?template=rfc.md) ### RFC Process diff --git a/content/docs/troubleshooting.mdx b/content/docs/troubleshooting.mdx index e86fc0b..36d9eb0 100644 --- a/content/docs/troubleshooting.mdx +++ b/content/docs/troubleshooting.mdx @@ -485,7 +485,7 @@ If you're still stuck after trying these solutions: - [GitHub Issues](https://github.com/objectstack-ai/spec/issues) 2. **Ask the community:** - - [GitHub Discussions](https://github.com/objectstack-ai/spec/discussions) + - [GitHub Issues](https://github.com/objectstack-ai/spec/issues) 3. **Report a bug:** - [Create a new issue](https://github.com/objectstack-ai/spec/issues/new) diff --git a/content/docs/tutorials.mdx b/content/docs/tutorials.mdx index b4b31ed..f8c0803 100644 --- a/content/docs/tutorials.mdx +++ b/content/docs/tutorials.mdx @@ -126,12 +126,12 @@ Apply what you've learned to build your own application! ## Community Examples Check out community-contributed examples: -- [GitHub Discussions](https://github.com/objectstack-ai/spec/discussions) +- [GitHub Issues](https://github.com/objectstack-ai/spec/issues) - [Example Gallery](https://github.com/objectstack-ai/spec/tree/main/examples) ## Get Help Stuck on a tutorial? - Check the [Troubleshooting Guide](/docs/troubleshooting) -- Ask in [GitHub Discussions](https://github.com/objectstack-ai/spec/discussions) +- Ask in [GitHub Issues](https://github.com/objectstack-ai/spec/issues) - Review the [FAQ](/docs/faq)