Skip to content

Commit 620d4c4

Browse files
committed
claude code jobs, very useful for tech job search
1 parent 34a151b commit 620d4c4

4 files changed

Lines changed: 553 additions & 0 deletions

File tree

Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
# Contributing to claude-jobs
2+
3+
Add your company in 5 minutes!
4+
5+
## How to add your company
6+
7+
### 1. Find your public job API endpoint
8+
9+
Your endpoint must be publicly accessible. JSON APIs are preferred, but HTML job board pages also work. Common patterns:
10+
11+
- **Greenhouse**: `https://boards-api.greenhouse.io/v1/boards/yourcompany/jobs`
12+
- **Lever**: `https://api.lever.co/v0/postings/yourcompany`
13+
- **Ashby**: `https://api.ashbyhq.com/posting-api/job-board/yourcompany`
14+
- **Ashby (HTML)**: `https://jobs.ashbyhq.com/yourcompany` (if API doesn't return all jobs)
15+
- **Custom**: `https://yourcompany.com/api/jobs` or `https://yourcompany.com/jobs.json`
16+
17+
### 2. Test your endpoint
18+
19+
```bash
20+
curl https://your-endpoint-url
21+
```
22+
23+
### 3. Add your company to SKILL.md
24+
25+
Fork this repo and add a row to the Companies table in `SKILL.md`:
26+
27+
```markdown
28+
| yourcompany | https://your-endpoint-url |
29+
```
30+
31+
### 4. Submit a pull request
32+
33+
```bash
34+
git checkout -b add-yourcompany
35+
git commit -m "Add YourCompany job listings"
36+
git push origin add-yourcompany
37+
```
38+
39+
### Checklist
40+
41+
- [ ] Endpoint is publicly accessible
42+
- [ ] Added row to Companies table in `SKILL.md`
43+
- [ ] Tested with `curl`
44+
45+
## Other contributions
46+
47+
- **Report issues**: [Open an issue](https://github.com/jshchnz/claude-jobs/issues/new)
48+
- **Improve the skill**: PRs welcome for better filtering, formatting, or error handling
49+
50+
## License
51+
52+
By contributing, you agree that your contributions will be licensed under the MIT License.
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2026 claude-jobs contributors
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

0 commit comments

Comments
 (0)