conductor-harness 1.0.3 → 1.0.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -8,4 +8,4 @@ Show current harness status:
|
|
|
8
8
|
2. Show `.harness/progress.md` contents if it exists.
|
|
9
9
|
3. Show `git log --oneline -5`.
|
|
10
10
|
4. Show `git status --short`.
|
|
11
|
-
5. Check if any
|
|
11
|
+
5. Check if any Hindsight memory exists for this task (use memory skill to recall by branch name).
|
package/runtime/install.sh
CHANGED
|
@@ -287,7 +287,11 @@ echo "5. Fill in WORKFLOW.md — injected into every Claude Code session as proj
|
|
|
287
287
|
echo " Or type /setup inside Claude Code to auto-generate it from your project structure."
|
|
288
288
|
echo ""
|
|
289
289
|
if [ "$USE_RAILWAY" = "y" ] || [ "$USE_RAILWAY" = "yes" ]; then
|
|
290
|
-
echo "6.
|
|
290
|
+
echo "6. Add Railway IDs to .env (or .env.local):"
|
|
291
|
+
echo " RAILWAY_PROJECT_ID=your-project-id"
|
|
292
|
+
echo " RAILWAY_ENVIRONMENT_ID=your-environment-id"
|
|
293
|
+
echo " RAILWAY_SERVICE_ID=your-service-id"
|
|
294
|
+
echo " Find these in your Railway project settings."
|
|
291
295
|
echo ""
|
|
292
296
|
fi
|
|
293
297
|
echo "Docs: https://github.com/blaesild/conductor-harness"
|