Thank you for your interest in contributing to the Semantic Anchors catalog! This project aims to build a curated collection of well-defined terms, methodologies, and frameworks that serve as reference points when communicating with Large Language Models (LLMs).
- How to Propose a New Anchor
- Quality Criteria for Semantic Anchors
- Testing Methodology
- Improving Existing Anchors
- Development Setup
- Pull Request Workflow
- Code of Conduct
- Go to Issues
- Select "🌟 Propose New Semantic Anchor"
- Fill out the template completely
- Submit the issue
The maintainers will review your proposal and provide feedback.
A good proposal includes:
- Clear name: The term or phrase that serves as the anchor
- Full explanation: What concepts does this anchor activate?
- Key proponents: Who originated or standardized this concept?
- Use cases: When should someone invoke this anchor?
- LLM test results: Evidence that LLMs recognize and respond appropriately
Before proposing an anchor, verify it meets these criteria:
References a specific, established body of knowledge with clear boundaries.
- ✓ "TDD, London School" - specific variant with defined practices
- ✗ "Best practices" - too vague, no clear boundaries
Activates multiple interconnected concepts, not just a single instruction.
- ✓ "SOLID Principles" - triggers S.O.L.I.D. breakdown, design patterns, OOP principles
- ✗ "TLDR" - just means "summarize," no conceptual depth
Different users invoking it get similar conceptual activation.
- ✓ "Clean Architecture" - well-documented pattern, consistent interpretation
- ✗ "ELI5" - vague target level, inconsistent results
Can be traced to key proponents, publications, or documented standards.
- ✓ "Hexagonal Architecture" - Alistair Cockburn, documented pattern
- ✗ "Keep it simple" - no clear origin, just general advice
- "TLDR" - Underspecified, no defined structure
- "ELI5" - Vague target level, no pedagogical framework
- "Keep it short/simple" - Pure instruction, no conceptual depth
- "Best practices" - Too broad, no specific framework
IMPORTANT: Always test your proposed anchor with an LLM before submitting.
What concepts do you associate with '<your anchor name>'?
Ask yourself:
- Recognition: Does the LLM recognize the term?
- Accuracy: Is the interpretation correct?
- Depth: Does it activate multiple related concepts?
- Specificity: Is the response focused and detailed?
Prompt: "What concepts do you associate with 'SOLID Principles'?"
Response should include:
- Single Responsibility Principle
- Open/Closed Principle
- Liskov Substitution Principle
- Interface Segregation Principle
- Dependency Inversion Principle
- Object-oriented design
- Robert C. Martin (Uncle Bob)
If the LLM provides a detailed, accurate response like this, your anchor is likely good!
Prompt: "What concepts do you associate with 'TLDR'?"
Response might be:
- "Too Long; Didn't Read"
- Means to summarize
- Used in online communication
This lacks depth and doesn't activate a rich conceptual framework.
Found an issue with an existing anchor? We welcome improvements!
- Go to Issues
- Select "📝 Improve Existing Anchor"
- Fill out the form:
- Which anchor needs improvement?
- What's wrong or missing?
- What change do you propose?
- References supporting your suggestion
- Submit the issue
If you want to contribute code or work on the website:
- Node.js 20+
- npm or pnpm
- Git
git clone https://github.com/LLM-Coding/Semantic-Anchors.git
cd Semantic-Anchors# Website dependencies
cd website
npm install
# Script dependencies
cd ../scripts
npm installcd website
npm run dev
# → http://localhost:5173/cd website
npm run testcd website
npm run build- Fork the repository (if you're not a maintainer)
- Create a feature branch:
git checkout -b feature/your-feature-name
- Make your changes
- Write/update tests if applicable
- Run tests:
npm run test - Commit your changes:
Use Conventional Commits format:
git commit -m "feat: Add feature description"feat:- New featurefix:- Bug fixdocs:- Documentation changestest:- Test changeschore:- Maintenance tasks
- Push to your fork:
git push origin feature/your-feature-name
- Create a Pull Request on GitHub
- Wait for review - Maintainers will review and provide feedback
Note: Currently, new anchors are added via maintainer workflow after issue approval. In the future (Phase 4), this will be automated via GitHub Copilot.
Current Process:
- Create an issue using the "Propose New Anchor" template
- Maintainers review and approve
- Maintainers create the anchor file and PR
- Community reviews the PR
We pledge to make participation in this project a harassment-free experience for everyone, regardless of age, body size, disability, ethnicity, gender identity and expression, level of experience, nationality, personal appearance, race, religion, or sexual identity and orientation.
Positive behaviors:
- Using welcoming and inclusive language
- Being respectful of differing viewpoints
- Gracefully accepting constructive criticism
- Focusing on what is best for the community
- Showing empathy towards other community members
Unacceptable behaviors:
- Trolling, insulting/derogatory comments, and personal attacks
- Public or private harassment
- Publishing others' private information without permission
- Other conduct which could reasonably be considered inappropriate
Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by contacting the project maintainers. All complaints will be reviewed and investigated and will result in a response that is deemed necessary and appropriate to the circumstances.
- General questions: GitHub Discussions
- Bug reports: Use the Bug Report template
- Feature requests: Open a new issue
By contributing to Semantic Anchors, you agree that your contributions will be licensed under the same license as the project (see LICENSE).
Thank you for contributing to Semantic Anchors! 🎉