Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Replace LangChain with Claude Skills; add link-check GitHub Actions w…
…orkflow

Agent-Logs-Url: https://github.com/nitrocode/nitrocode/sessions/5dc583cf-a8e7-4cd6-93e6-63762ea0aee0

Co-authored-by: nitrocode <7775707+nitrocode@users.noreply.github.com>
  • Loading branch information
Copilot and nitrocode authored May 3, 2026
commit bc810f55a9e05079f11c0a814761069820cc12b7
33 changes: 33 additions & 0 deletions .github/workflows/link-check.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: Link Check

on:
push:
branches: [main]
pull_request:
branches: [main]
schedule:
# Run weekly on Monday at 08:00 UTC to catch links that rot over time
- cron: "0 8 * * 1"
workflow_dispatch:

jobs:
link-check:
name: Check links and images
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4

- name: Check links and images
uses: lycheeverse/lychee-action@v2
with:
args: >
--verbose
--no-progress
--exclude-loopback
--exclude "https://komarev.com"
--exclude "https://streak-stats.demolab.com"
--exclude "https://github-readme-stats.vercel.app"
--exclude "https://readme-typing-svg.demolab.com"
README.md
fail: true
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,8 +59,8 @@ Security & Compliance
AI & Agents

![Claude](https://img.shields.io/badge/Claude_Code-D97757?style=for-the-badge&logo=anthropic&logoColor=white)
![Claude Skills](https://img.shields.io/badge/Claude_Skills-D97757?style=for-the-badge&logo=anthropic&logoColor=white)
![OpenAI](https://img.shields.io/badge/OpenAI-412991?style=for-the-badge&logo=openai&logoColor=white)
![LangChain](https://img.shields.io/badge/LangChain-1C3C3C?style=for-the-badge&logo=langchain&logoColor=white)

</div>

Expand All @@ -73,6 +73,7 @@ I've gone deep on making AI a core part of how engineering teams operate — not
**What that looks like in practice:**

- **Claude Code & agentic workflows** — using Claude Code for autonomous coding tasks, code review, and infrastructure generation end-to-end
- **Claude Skills** — building custom Claude Skills that plug domain-specific knowledge and tooling directly into developer workflows
- **Internal prompt libraries** — building versioned, reusable prompt libraries that encode your team's standards and patterns so every engineer benefits from collective knowledge
- **Autonomous AI agents** — designing multi-agent pipelines that handle repetitive ops tasks, security audits, and compliance checks without human-in-the-loop for every step
- **AI-native team transformation** — helping engineering orgs move from "AI as a tool" to "AI as a team member": workflows, guardrails, evaluation loops, and culture
Expand Down
Loading