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
1 change: 1 addition & 0 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"image":"mcr.microsoft.com/devcontainers/universal:2","features":{"ghcr.io/rails/devcontainer/features/activestorage":"1"}}
Comment thread
Pjrich1313 marked this conversation as resolved.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ build/Release

# Dependency directories
node_modules/
package-lock.json
jspm_packages/

# Snowpack dependency directory (https://snowpack.dev/)
Expand Down
3 changes: 1 addition & 2 deletions components/CompatibilitySection.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -91,8 +91,7 @@ const agents: AgentEntry[] = [
imageSrc: "/logos/warp.svg",
},
{
name: "Coding agent",
from: "GitHub Copilot",
name: "GitHub Copilot",
url: "https://gh.io/coding-agent-docs",
imageSrc: "/logos/copilot.svg",
Comment on lines +94 to 96
},
Expand Down
13 changes: 13 additions & 0 deletions components/FAQSection.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,19 @@ export default function FAQ() {
answer:
"No. AGENTS.md is just standard Markdown. Use any headings you like; the agent simply parses the text you provide.",
},
{
question: "What if someone only provides a repository name?",
answer: (
<>
<p className="mb-2">Ask them to clarify what they want to do. Common options include:</p>
<ul className="list-disc list-inside space-y-1">
<li>Manage an issue or recreate a similar task within the repository.</li>
<li>Retrieve data, review commits, or stage changes for that repo.</li>
<li>Update or validate ownership for the repository itself.</li>
</ul>
</>
),
},
Comment on lines +17 to +29
{
question: "What if instructions conflict?",
answer:
Expand Down
2 changes: 1 addition & 1 deletion next-env.d.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/// <reference types="next" />
/// <reference types="next/image-types/global" />
import "./.next/dev/types/routes.d.ts";
import "./.next/types/routes.d.ts";

// NOTE: This file should not be edited
// see https://nextjs.org/docs/pages/api-reference/config/typescript for more information.
7 changes: 4 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,13 @@
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"lint": "next lint"
"lint": "next lint",
"bash-version": "bash --version"
},
"dependencies": {
"@tailwindcss/postcss": "4.1.11",
"@vercel/analytics": "^1.5.0",
"next": "16.1.0",
"next": "16.1.6",
"react": "19.2.3",
"react-dom": "19.2.3",
"tailwindcss": "4.1.11"
Expand All @@ -24,4 +25,4 @@
"typescript": "5"
},
"packageManager": "pnpm@9.15.1+sha256.9e534e70afef06374f6126b44bda5760947135ce16a30aef1010e965fb7e3e3e"
}
}
Loading