A Claude Subagent Workflow command to help with complex features via workflows
Location: ~/.claude/commands/subagent-workflow.md
Usage: /user:subagent-workflow <your complex task>
URL: https://filamentphp.com/docs/4.x/introduction/overview
Overview: Top level overview of what Filament is, its Server-Driven UI architecture, core packages, and ecosystem.
Sub Headings: Introduction, What is Server-Driven UI?, Packages, Plugins, Customizing the appearance, Testing, Alternatives to Filament
URL: https://fluxui.dev/docs/installation
Overview: Covers how to install Flux (via Composer), set up Tailwind CSS and the Inter font, activate Flux Pro, and publish assets or components. Also includes instructions for integration with Forge, GitHub Actions, CI environments, and nginx setup. ([fluxui.dev][1])
$TenantID = 'CUSTOMERTENANT.ONMICROSOFT.COM' | |
$ApplicationId = "YOURPPLICTIONID" | |
$ApplicationSecret = "YOURAPPLICATIONSECRET" | |
$body = @{ | |
'resource' = 'https://graph.microsoft.com' | |
'client_id' = $ApplicationId | |
'client_secret' = $ApplicationSecret | |
'grant_type' = "client_credentials" | |
'scope' = "openid" |
function Create-Slug { | |
[CmdletBinding()] | |
param( | |
[Parameter(Mandatory=$true)] | |
[string]$InputString | |
) | |
# Use a regular expression to remove any characters that are not letters, numbers, or dashes | |
$slug = $InputString -replace '[^\w-]', '' |
# Based on https://sccmentor.com/2021/01/11/using-proactive-remediations-to-remove-google-chrome/ | |
# Thank you. | |
try | |
{ | |
$chromeInstalled = Test-Path 'HKCU:\SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\chrome.exe' | |
if ($chromeInstalled -eq 'True') { | |
Write-Host "Google Chrome is installed locally" |
<?php | |
namespace App; | |
use Geocoder\Laravel\ProviderAndDumperAggregator as G; | |
class Geocoder | |
{ | |
protected $geocoder; |
Route::get('/route-list', function () { | |
Artisan::call('route:list'); | |
return '<pre>'.Artisan::output(); | |
}); |
@servers(['web' => $user.'@'.$host,'localhost' => '127.0.0.1']) | |
@setup | |
// Sanity checks | |
if (empty($host)) { | |
exit('ERROR: $host var empty or not defined'); | |
} | |
if (empty($user)) { | |
exit('ERROR: $user var empty or not defined'); | |
} |
@servers(['web' => $user.'@'.$host,'localhost' => '127.0.0.1']) | |
@setup | |
// Sanity checks | |
if (empty($host)) { | |
exit('ERROR: $host var empty or not defined'); | |
} | |
if (empty($user)) { | |
exit('ERROR: $user var empty or not defined'); | |
} |