legislative-tracker
Track Washington State K-12 education legislation using committee-based discovery via SOAP API. Gets ALL bills from education committees - no keyword filtering that might miss bills. Use when: checking legislature, tracking bills, legislative updates, morning briefing legislative section.
What this skill does
# Legislative Tracker Skill
Track Washington State K-12 education legislation from leg.wa.gov using committee-based discovery. This approach queries committees directly via SOAP API to get ALL bills - not just keyword matches.
## Why Committee-Based Discovery
**Problem with keyword searching:** Bills with unexpected wording or indirect impacts get missed. A bill about "unfunded mandates" might never mention "school" but still affect districts.
**Solution:** Query education committees directly. If a bill is in the House Education Committee or Senate Early Learning & K-12 Education Committee, it's education-related by definition.
---
## Discovery Strategy
### Tier 1: Direct Education Bills (Comprehensive)
Query these committees to get **ALL** education bills:
| Committee | Chamber | Query |
|-----------|---------|-------|
| Education | House | All bills - no filtering |
| Early Learning & K-12 Education | Senate | All bills - no filtering |
### Tier 2: Indirect Impact Bills (Candidates)
Query these committees and filter via WebFetch:
| Committee | Chamber |
|-----------|---------|
| Appropriations | House |
| Capital Budget | House |
| Labor & Workplace Standards | House |
| Ways & Means | Senate |
| Labor & Commerce | Senate |
| State Government, Tribal Affairs & Elections | Senate |
**Workflow:** The SOAP API returns only bill IDs. Geoffrey must:
1. Get all bill IDs from Tier 2 committees (~700 bills)
2. WebFetch each bill's summary page to get the title/description
3. Filter for education keywords in the description
4. Add matching bills to the tracked list
**Filter keywords:** school, student, teacher, education, k-12, district, ospi, classroom, principal, paraeducator, learning, instruction, curriculum, diploma, graduation, superintendent, levy, bond, capital, school construction
### Tier 3: WebSearch Fallback
If SOAP API fails, use WebSearch:
```
site:leg.wa.gov "referred to Education" 2025-26
site:leg.wa.gov "Early Learning & K-12" 2025-26
site:leg.wa.gov K-12 school district bill 2025
```
---
## Workflow Phases
### Phase 1: Committee Discovery (SOAP)
Run the orchestrator script:
```bash
bun skills/legislative-tracker/scripts/get_bills.js
```
Returns two lists:
- **confirmed_bills**: From Tier 1 education committees (definitely education-related)
- **tier2_candidates**: From Tier 2 finance committees (need filtering)
### Phase 2: WebFetch Confirmed Bills
For each bill in `confirmed_bills`:
```
URL: https://app.leg.wa.gov/billsummary?BillNumber={NUM}&Year=2025
```
Extract full details for analysis.
### Phase 3: Filter Tier 2 Candidates
For each bill in `tier2_candidates`:
1. WebFetch the bill summary page
2. Check if title/description contains education keywords
3. If relevant, add to tracked bills list
**Education keywords:** school, student, teacher, education, k-12, district, ospi, classroom, principal, paraeducator, learning, instruction, curriculum, diploma, graduation, superintendent, levy, bond, capital
### Phase 4: Analysis
Apply analysis framework to all tracked bills:
- Assign priority level (HIGH/MEDIUM/LOW)
- Categorize impact type (FISCAL/OPERATIONAL/WORKFORCE/GOVERNANCE)
- Assess fiscal implications
- Flag district legislator sponsorship
### Phase 4: Output
Generate report in requested format and save to Obsidian:
```
Path: Work/PSD/Legislative/[YYYY-MM-DD].md
Tags: #legislation #psd #work
```
---
## Script Usage
### Main Orchestrator
```bash
# Full discovery (both tiers)
bun skills/legislative-tracker/scripts/get_bills.js
# Education committees only (Tier 1)
bun skills/legislative-tracker/scripts/get_bills.js --tier 1
# Finance committees only (Tier 2)
bun skills/legislative-tracker/scripts/get_bills.js --tier 2
# Briefing format for morning-briefing integration
bun skills/legislative-tracker/scripts/get_bills.js --format briefing
```
### Committee Explorer
```bash
# List all active committees
bun skills/legislative-tracker/scripts/get_committees.js
# House committees only
bun skills/legislative-tracker/scripts/get_committees.js --chamber house
# Education committees only
bun skills/legislative-tracker/scripts/get_committees.js --filter education
```
### Single Committee Query
```bash
# Get bills in a specific committee
bun skills/legislative-tracker/scripts/get_committee_bills.js \
--committee "Education" --agency House
# Include referral history
bun skills/legislative-tracker/scripts/get_committee_bills.js \
--committee "Education" --agency House --referrals
```
### Single Bill Lookup
```bash
# Get WebFetch URL for a specific bill
bun skills/legislative-tracker/scripts/get_bill_info.js HB 2551 --year 2025
bun skills/legislative-tracker/scripts/get_bill_info.js "SB 6247" --year 2025
```
---
## Analysis Framework
### Priority Levels
| Level | Symbol | Criteria |
|-------|--------|----------|
| HIGH | ๐ด | Direct fiscal impact >$100K, immediate deadline (<7 days), new mandates affecting operations, sponsored by district legislator |
| MEDIUM | ๐ก | Moderate impact, compliance changes, deadline within 30 days |
| LOW | ๐ข | Minimal direct impact, monitoring only, distant timeline |
### Impact Categories
| Category | Keywords | Description |
|----------|----------|-------------|
| FISCAL | levy, bond, funding, appropriation | Funding formulas, levies, bonds, appropriations |
| OPERATIONAL | procurement, transportation, facilities | Day-to-day operations, contracts, services |
| WORKFORCE | staff, salary, certification, benefits | Staffing, compensation, certification requirements |
| GOVERNANCE | reporting, accountability, board | Compliance, reporting, board authority |
### Fiscal Impact Indicators
| Indicator | Symbol | Meaning |
|-----------|--------|---------|
| COST INCREASE | โฌ๏ธ | Adds expense to district budget |
| COST DECREASE | โฌ๏ธ | Reduces costs or adds revenue |
| RISK | โ ๏ธ | Financial uncertainty or liability exposure |
| NEUTRAL | โก๏ธ | No direct fiscal impact to district |
---
## Output Formats
### Briefing JSON (for morning-briefing)
```json
{
"summary": {
"total_bills": 12,
"new_this_period": 3,
"urgent": 2,
"by_priority": { "high": 2, "medium": 5, "low": 5 }
},
"priority_items": [
{
"bill": "HB 1234",
"title": "Concerning school construction funding",
"priority": "high",
"impact": "fiscal",
"fiscal_indicator": "cost_increase",
"next_action": "House vote 2026-01-30",
"summary": "Increases capital project funding requirements by 15%"
}
],
"upcoming_deadlines": [],
"generated_at": "2026-01-27T08:00:00Z"
}
```
### Full Report Markdown
```markdown
# WA School Legislation Radar
Report Date: 2026-01-27
Session: 2025-26 Regular
Discovery: Committee-based (Tier 1 + Tier 2)
## ๐จ Priority Action Items
### ๐ด HIGH Priority
#### HB 1234 - School Construction Funding
- **Status:** Passed House, in Senate Education Committee
- **Sponsors:** Rep. Smith (26th), Rep. Jones
- **Impact:** FISCAL โฌ๏ธ
- **Summary:** Increases capital project funding requirements
- **Next Action:** Senate hearing Feb 1
## ๐ Legislative Dashboard
### Discovery Summary
| Source | Bills Found |
|--------|-------------|
| House Education | 15 |
| Senate EL/K-12 | 12 |
| Tier 2 (filtered) | 8 |
| **Total Unique** | **28** |
### By Priority
| Priority | Count | Bills |
|----------|-------|-------|
| ๐ด HIGH | 2 | HB 1234, SB 5678 |
| ๐ก MEDIUM | 5 | ... |
| ๐ข LOW | 5 | ... |
## ๐ All Tracked Bills
[Per-bill details grouped by priority level]
---
*Generated by Geoffrey Legislative Tracker*
*Discovery: Committee-based SOAP API*
```
---
## Data Sources
### SOAP API (Primary)
**Endpoint:** `https://wslwebservices.leg.wa.gov/`
| Service | Method | Purpose |
|---------|--------|---------|
| CommitteeService | GetActiveHouseCommittees | List House committee names |
| CommitteeService | GetActiveSenateCommittees | List Senate committee names |
| CommitteeActionService | GetInCommittee | Bills currently in cRelated in Backend & APIs
jfrog
IncludedInteract with the JFrog Platform via the JFrog CLI and REST/GraphQL APIs. Use this skill when the user wants to manage Artifactory repositories, upload or download artifacts, manage builds, configure permissions, manage users and groups, work with access tokens, configure JFrog CLI servers, search artifacts, manage properties, set up replication, manage JFrog Projects, run security audits or scans, look up CVE details, query exposures scan results from JFrog Advanced Security, manage release bundles and lifecycle operations, aggregate or export platform data, or perform any JFrog Platform administration task. Also use when the user mentions jf, jfrog, artifactory, xray, distribution, evidence, apptrust, onemodel, graphql, workers, mission control, curation, advanced security, exposures, or any JFrog product name.
cupynumeric-migration-readiness
IncludedPre-migration readiness assessor for porting NumPy to cuPyNumeric. Use BEFORE substantial porting work begins when the user asks whether code will scale on GPU, whether they should migrate to cuPyNumeric, which NumPy patterns transfer cleanly, what must be refactored before porting, or mentions pre-port assessment, scaling analysis, or refactor planning. Inspect the user's source code, look up NumPy usage, cross-reference the cuPyNumeric API support manifest, and distinguish distributed-scaling-friendly patterns from blockers such as unsupported APIs, scalar synchronization, host round-trips, Python/object-heavy control flow, shape/data-dependent branching, and in-place mutation hazards. Produce a verdict of READY, LIGHT REFACTOR, SIGNIFICANT REFACTOR, or NOT RECOMMENDED, with concrete refactor pointers.
alibabacloud-data-agent-skill
IncludedInvoke Alibaba Cloud Apsara Data Agent for Analytics via CLI to perform natural language-driven data analysis on enterprise databases. Data Agent for Analytics is an intelligent data analysis agent developed by Alibaba Cloud Database team for enterprise users. It automatically completes requirement analysis, data understanding, analysis insights, and report generation based on natural language descriptions. This tool supports: discovering data resources (instances/databases/tables) managed in DMS, initiating query or deep analysis sessions, real-time progress tracking, and retrieving analysis conclusions and generated reports. Use this Skill when users need to query databases, analyze data trends, generate data reports, ask questions in natural language, or mention "Data Agent", "data analysis", "database query", "SQL analysis", "data insights".
token-optimizer
IncludedReduce OpenClaw token usage and API costs through smart model routing, heartbeat optimization, budget tracking, and native 2026.2.15 features (session pruning, bootstrap size limits, cache TTL alignment). Use when token costs are high, API rate limits are being hit, or hosting multiple agents at scale. The 4 executable scripts (context_optimizer, model_router, heartbeat_optimizer, token_tracker) are local-only โ no network requests, no subprocess calls, no system modifications. Reference files (PROVIDERS.md, config-patches.json) document optional multi-provider strategies that require external API keys and network access if you choose to use them. See SECURITY.md for full breakdown.
resend-cli
IncludedUse this skill when the task is specifically about operating Resend from an AI agent, terminal session, or CI job via the official resend CLI: installing/authenticating the CLI, sending/listing/updating/cancelling emails, batch sends, domains and DNS, webhooks and local listeners, inbound receiving, contacts, topics, segments, broadcasts, templates, API keys, profiles, or debugging Resend CLI/API failures. Trigger on mentions of Resend CLI, `resend`, `resend doctor`, `resend emails send`, `resend domains`, `resend webhooks listen`, `resend emails receiving`, or agent-friendly terminal automation.
alibabacloud-odps-maxframe-coding
IncludedUse this skill for MaxFrame SDK development and documentation navigation on Alibaba Cloud MaxCompute (ODPS). Helps answer MaxFrame API, concept, official example, and supported pandas API questions; create data processing programs; read/write MaxCompute tables; debug jobs (remote or local); and build custom DPE runtime images. Trigger when users mention MaxFrame, MaxCompute with MaxFrame, ODPS table processing, DPE runtime, MaxFrame docs/examples, DataFrame/Tensor operations, or GPU runtime setup. Works for both English and Chinese queries about Alibaba Cloud data processing with MaxFrame.