Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 24 additions & 0 deletions components/ToolingSection.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
import Section from "@/components/Section";

const ToolingSection = () => (
<Section title="Tooling" className="pb-0" center maxWidthClass="max-w-3xl">
<p className="max-w-3xl">Utilities for working with AGENTS.md files:</p>

<p className="max-w-3xl mt-4">
<a
href="https://github.com/zackabrah/scopeglass"
className="underline hover:no-underline"
target="_blank"
rel="noopener noreferrer"
>
Scopeglass
</a>{" "}
&mdash; local CLI that shows the effective AGENTS.md chain for any path:
precedence order, line-level provenance, context-size estimates, and
checks for broken references, duplicates, and conflicting guidance.
Includes a CI gate (<code>scopeglass check</code>).
</p>
</Section>
);

export default ToolingSection;
2 changes: 2 additions & 0 deletions pages/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ import CompatibilitySection from "@/components/CompatibilitySection";
import { GetStaticProps } from "next";
import WhySection from "@/components/WhySection";
import AboutSection from "@/components/AboutSection";
import ToolingSection from "@/components/ToolingSection";

interface LandingPageProps {
contributorsByRepo: Record<string, { avatars: string[]; total: number }>;
Expand All @@ -25,6 +26,7 @@ export default function LandingPage({ contributorsByRepo }: LandingPageProps) {
<HowToUseSection />
<div className="flex-1 flex flex-col gap-4 mt-16">
<AboutSection />
<ToolingSection />
<FAQSection />
</div>
</main>
Expand Down