Implement document compression and chunking for token efficiency #15
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Welcome | |
| on: | |
| issues: | |
| types: [opened] | |
| pull_request: | |
| types: [opened] | |
| jobs: | |
| welcome: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Greet contributor | |
| uses: actions/first-interaction@v1 | |
| with: | |
| repo-token: ${{ secrets.GITHUB_TOKEN }} | |
| issue-message: | | |
| 👋 Thanks for opening your first issue! | |
| This project is a **multi-agent MCP system**, so detailed context helps a lot. | |
| pr-message: | | |
| 🚀 Thanks for your first PR! | |
| Please ensure: | |
| - No stdout logs (MCP requirement) | |
| - Clean, modular code |