Skip to content
Open
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
7 changes: 7 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -247,3 +247,10 @@ Use prompts.chat as an MCP server in your AI tools.
## 📜 License

**[CC0 1.0 Universal (Public Domain)](https://creativecommons.org/publicdomain/zero/1.0/)** — Copy, modify, distribute, and use freely. No attribution required.

## Compatible Agents

These prompts work great with:
- [ChatGPT](https://chat.openai.com/)
- [Claude Code](https://claude.com/product/claude-code)
- [AdaL](https://sylph.ai/) - Self-evolving AI coding agent ([Docs](https://docs.sylph.ai/) | [GitHub](https://github.com/SylphAI-Inc/adal-cli))
Comment on lines +251 to +256
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue | 🟡 Minor

Address redundancy with existing compatibility statement.

This section duplicates information already present at line 15: "Works with ChatGPT, Claude, Gemini, Llama, Mistral, and more." The new section lists only 3 agents while the existing statement mentions 5+ models. Consider either:

  • Removing this section as redundant
  • Integrating AdaL into the existing compatibility statement at line 15
  • Clarifying why these 3 specific agents warrant special mention
🤖 Prompt for AI Agents
In `@README.md` around lines 251 - 256, The "## Compatible Agents" section is
redundant with the earlier compatibility sentence (line 15); either remove this
heading and its list, or merge AdaL into the existing compatibility statement so
all supported agents are listed in one place, or else expand the heading to
clearly explain why these three are specially highlighted; locate the "##
Compatible Agents" heading and the earlier compatibility sentence and perform
one of those three actions to eliminate duplication and keep the README
consistent.

Comment on lines +254 to +256
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue | 🟡 Minor

🧩 Analysis chain

🏁 Script executed:

#!/bin/bash
# Verify all AdaL-related links

echo "=== Checking ChatGPT link ==="
curl -s -I -L -w "\nHTTP Status: %{http_code}\n" "https://chat.openai.com/" 2>&1 | head -20

echo ""
echo "=== Checking Claude Code link ==="
curl -s -I -L -w "\nHTTP Status: %{http_code}\n" "https://claude.com/product/claude-code" 2>&1 | head -20

echo ""
echo "=== Checking AdaL website ==="
curl -s -I -L -w "\nHTTP Status: %{http_code}\n" "https://sylph.ai/" 2>&1 | head -20

echo ""
echo "=== Checking AdaL docs ==="
curl -s -I -L -w "\nHTTP Status: %{http_code}\n" "https://docs.sylph.ai/" 2>&1 | head -20

echo ""
echo "=== Checking AdaL GitHub ==="
curl -s -I -L -w "\nHTTP Status: %{http_code}\n" "https://github.com/SylphAI-Inc/adal-cli" 2>&1 | head -20

Repository: f/prompts.chat

Length of output: 8180


Update ChatGPT link URL to reflect current redirect.

The ChatGPT link currently redirects from https://chat.openai.com/ to https://chatgpt.com/. Update the README to use the current URL: https://chatgpt.com/. The Claude Code, AdaL website, AdaL docs, and AdaL GitHub links are all accessible and correct.

🤖 Prompt for AI Agents
In `@README.md` around lines 254 - 256, Update the ChatGPT link in the README
where the ChatGPT entry (the line containing
"[ChatGPT](https://chat.openai.com/)") appears to use the current URL
"https://chatgpt.com/" instead of "https://chat.openai.com/"; leave the Claude
Code and AdaL links unchanged.

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue | 🟠 Major

Verify disproportionate emphasis on AdaL may constitute promotional content.

AdaL receives significantly more prominent treatment compared to ChatGPT and Claude Code:

  • AdaL: descriptive tagline ("Self-evolving AI coding agent") + 3 links (main site, docs, GitHub)
  • ChatGPT: 1 link only
  • Claude Code: 1 link only

Given the PR notes indicate this content was generated by AdaL itself, this asymmetry raises concerns about self-promotional content. Consider either:

  • Providing equal treatment to all listed agents
  • Removing the special description and extra links for AdaL
  • Justifying why AdaL warrants additional context
🤖 Prompt for AI Agents
In `@README.md` at line 256, The README currently gives AdaL (AdaL, "Self-evolving
AI coding agent") disproportionate prominence with a tagline and three links;
update the README to ensure parity across listed agents by either removing
AdaL's extra tagline and extra links so all entries (AdaL, ChatGPT, Claude Code)
have the same minimal format (name + single canonical link), or alternatively
expand ChatGPT and Claude Code entries to include equivalent short descriptive
taglines and matching sets of links if you intend to keep AdaL's expanded
listing; locate the AdaL line and the ChatGPT and Claude Code entries and make
the formatting and link counts uniform.