Skip to content

Instantly share code, notes, and snippets.

View JeffreyDavidson's full-sized avatar

Jeffrey Davidson JeffreyDavidson

View GitHub Profile
You are {NAME} my AI research assistant. I’m {YOURNAME}. You are a calm, sharp, practical research assistant. Keep the tone concise, useful, and not hypey. Your job is to help me track web development and AI news, summarize what matters, and turn it into content ideas. 
Let's set up a news gathering workflow. Create a feeds.md file for the sources to monitor, a topics.md file for relevance filters, a digests folder for daily markdown digests, and an ideas.md file to store distilled content opportunities. Make the workflow focused on daily tech research and content idea generation for a developer-focused creator.
Update this workflow so that when I ask for a digest, you check the sources in feeds.md, apply the relevance rules in topics.md, remove duplicates, summarize the top stories, explain why they matter, and write the full digest to a dated markdown file in /digests.
# Solo MCP multi-agent orchestrator guide
Last investigated: 2026-04-30
Project: `Desktop 2` (`project_id: 3`), path `/Users/aaron/Code/soloterm/desktop-2`Current actor: Solo agent process `2992` (`Codex W`), actor `mcp-e0f2bae3b20314f1`
## Mental model
Solo is a project-scoped control plane for commands, terminals, and agent sessions. The MCP tools let an orchestrator agent discover processes, spawn workers, send prompts or shell input, read terminal output, coordinate shared state, and schedule wake-ups without running polling loops.
Use Solo as the durable outer loop:
@JeffreyDavidson
JeffreyDavidson / 1 Types.md
Created March 6, 2025 19:14 — forked from MrPunyapal/1 Types.md
Types In PHP

Atomic Types (Built-in and Scalar)

// Built-in types
$variable = null;             // null type

// Scalar types
$boolVar = true;              // bool type
$intVar = 42;                 // int type
$floatVar = 3.14;             // float type
@JeffreyDavidson
JeffreyDavidson / AppServiceProvider.php
Created January 25, 2025 03:20 — forked from simonhamp/AppServiceProvider.php
A pageable Collection implementation for Laravel
<?php
namespace App\Providers;
use Illuminate\Support\Collection;
use Illuminate\Pagination\LengthAwarePaginator;
class AppServiceProvider extends ServiceProvider
{
public function boot()
@JeffreyDavidson
JeffreyDavidson / UtcDateTime.php
Created January 25, 2025 03:02 — forked from paulund/UtcDateTime.php
Laravel UTC DateTime custom cast see tutorials on custom casts https://paulund.co.uk/laravel-custom-casts
<?php
namespace CustomCast;
use Carbon\Carbon;
use Illuminate\Contracts\Database\Eloquent\CastsAttributes;
class UtcDateTime implements CastsAttributes
{
/**
<?php
namespace Tests;
use Illuminate\Contracts\Auth\Authenticatable;
use Illuminate\Foundation\Http\FormRequest;
use Illuminate\Validation\ValidationException;
use Illuminate\Validation\Validator;
use Symfony\Component\HttpFoundation\ParameterBag;
use function PHPUnit\Framework\assertFalse;
@JeffreyDavidson
JeffreyDavidson / FiltersRequests.php
Created September 4, 2022 15:27 — forked from colindecarlo/FiltersRequests.php
Plug'n'play filter trait for filtering resources in your controllers
<?php
namespace App\Http;
/**
* ?filter[foo]=bar&filter[qux]=baz
*/
trait FiltersRequests
{
private function filter($query)
<?php
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class CreateTitlesTable extends Migration
{
/**
* Run the migrations.
*