[PR #27] [CLOSED] Claude/create claude md jd ex9 #22

Closed
opened 2026-06-05 16:35:25 -04:00 by yindo · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/langchain-ai/.github/pull/27
Author: @Benjaminh94-wq
Created: 3/25/2026
Status: Closed

Base: mainHead: claude/create-claude-md-jdEx9


📝 Commits (10+)

  • 6714409 feat(bootstrap): add revolutionary AI assistant with OpenClaw + LangGraph + a-Shell
  • 1324322 Merge pull request #1 from Benjaminh94-wq/claude/add-claude-documentation-3TvEs
  • 838cbf5 Revert "feat(bootstrap): add revolutionary AI assistant with OpenClaw + LangGraph + a-Shell"
  • f1daaf5 Merge pull request #2 from Benjaminh94-wq/revert-1-claude/add-claude-documentation-3TvEs
  • ee3b231 feat: add CLAUDE.md with hardcoded codebase instructions for Claude Code
  • 3a53410 feat(system): add autonomous GitHub->localhost deployment pipeline
  • 092433c feat(ios): full autonomous iOS pipeline — Theos compile + SSH deploy + exec bridge
  • a359e7b feat(ci): add iOS Tailscale deploy workflow — compile + SSH deploy to 100.121.183.90
  • 91c3b42 feat(apps): trigger first live deploy to iPhone 14 Pro Max iOS 26.4
  • bdd38f4 fix(ci): robust Theos SDK install + sshpass + SSH test step

📊 Changes

44 files changed (+1541 additions, -0 deletions)

View changed files

.gitattributes (+3 -0)
.github/workflows/ci.yml (+75 -0)
.github/workflows/ios-ci.yml (+10 -0)
.github/workflows/ios-deploy.yml (+131 -0)
CLAUDE.md (+151 -0)
apps/.build-trigger (+1 -0)
apps/claude-daemon/Makefile (+13 -0)
apps/claude-daemon/control (+8 -0)
apps/claude-daemon/entitlements.xml (+14 -0)
apps/claude-daemon/main.m (+86 -0)
apps/claude-daemon/postinst (+32 -0)
apps/claude-daemon/system-control.sh (+178 -0)
apps/example-tool/Makefile (+12 -0)
apps/example-tool/control (+7 -0)
apps/example-tool/main.m (+16 -0)
apps/example-tweak/Filter.plist (+13 -0)
apps/example-tweak/Makefile (+13 -0)
apps/example-tweak/Tweak.x (+15 -0)
apps/example-tweak/control (+9 -0)
apps/example-tweak/entitlements.xml (+10 -0)

...and 24 more files

📄 Description

No description provided


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/langchain-ai/.github/pull/27 **Author:** [@Benjaminh94-wq](https://github.com/Benjaminh94-wq) **Created:** 3/25/2026 **Status:** ❌ Closed **Base:** `main` ← **Head:** `claude/create-claude-md-jdEx9` --- ### 📝 Commits (10+) - [`6714409`](https://github.com/langchain-ai/.github/commit/671440966e484219d15dd347a43ad32a821df26c) feat(bootstrap): add revolutionary AI assistant with OpenClaw + LangGraph + a-Shell - [`1324322`](https://github.com/langchain-ai/.github/commit/1324322d5f1e09eebfd7d30f2c1d65ab21d2abcd) Merge pull request #1 from Benjaminh94-wq/claude/add-claude-documentation-3TvEs - [`838cbf5`](https://github.com/langchain-ai/.github/commit/838cbf57dacf33769152802d8d01db794c5edaf5) Revert "feat(bootstrap): add revolutionary AI assistant with OpenClaw + LangGraph + a-Shell" - [`f1daaf5`](https://github.com/langchain-ai/.github/commit/f1daaf5b60196100e28ade2e4384c076ec3593be) Merge pull request #2 from Benjaminh94-wq/revert-1-claude/add-claude-documentation-3TvEs - [`ee3b231`](https://github.com/langchain-ai/.github/commit/ee3b23100833b8ad87188bca1ef3c05088d50b5a) feat: add CLAUDE.md with hardcoded codebase instructions for Claude Code - [`3a53410`](https://github.com/langchain-ai/.github/commit/3a53410f01023b063fae21966e51d5c89866004a) feat(system): add autonomous GitHub->localhost deployment pipeline - [`092433c`](https://github.com/langchain-ai/.github/commit/092433ce6889cf507a987c6d3c8ce71928c8d9ab) feat(ios): full autonomous iOS pipeline — Theos compile + SSH deploy + exec bridge - [`a359e7b`](https://github.com/langchain-ai/.github/commit/a359e7bb023eebfe54a138464d8c756d6de2c0c4) feat(ci): add iOS Tailscale deploy workflow — compile + SSH deploy to 100.121.183.90 - [`91c3b42`](https://github.com/langchain-ai/.github/commit/91c3b42c66281d699abd74f8ae400f1a510f2293) feat(apps): trigger first live deploy to iPhone 14 Pro Max iOS 26.4 - [`bdd38f4`](https://github.com/langchain-ai/.github/commit/bdd38f4b5f94e1a69b3a2533f4a663b579d1ba6e) fix(ci): robust Theos SDK install + sshpass + SSH test step ### 📊 Changes **44 files changed** (+1541 additions, -0 deletions) <details> <summary>View changed files</summary> ➕ `.gitattributes` (+3 -0) ➕ `.github/workflows/ci.yml` (+75 -0) ➕ `.github/workflows/ios-ci.yml` (+10 -0) ➕ `.github/workflows/ios-deploy.yml` (+131 -0) ➕ `CLAUDE.md` (+151 -0) ➕ `apps/.build-trigger` (+1 -0) ➕ `apps/claude-daemon/Makefile` (+13 -0) ➕ `apps/claude-daemon/control` (+8 -0) ➕ `apps/claude-daemon/entitlements.xml` (+14 -0) ➕ `apps/claude-daemon/main.m` (+86 -0) ➕ `apps/claude-daemon/postinst` (+32 -0) ➕ `apps/claude-daemon/system-control.sh` (+178 -0) ➕ `apps/example-tool/Makefile` (+12 -0) ➕ `apps/example-tool/control` (+7 -0) ➕ `apps/example-tool/main.m` (+16 -0) ➕ `apps/example-tweak/Filter.plist` (+13 -0) ➕ `apps/example-tweak/Makefile` (+13 -0) ➕ `apps/example-tweak/Tweak.x` (+15 -0) ➕ `apps/example-tweak/control` (+9 -0) ➕ `apps/example-tweak/entitlements.xml` (+10 -0) _...and 24 more files_ </details> ### 📄 Description _No description provided_ --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
yindo added the pull-request label 2026-06-05 16:35:25 -04:00
yindo closed this issue 2026-06-05 16:35:25 -04:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: langchain-ai/.github#22