• maiweb v0.1.0
  • ★
  • Feedback
  • ABC News (Australia) abc.net.au abc australia news public-broadcaster 2026-06-05 01:07
    ↗

    Australia's favourite classical music poll is back for another year — here's when it happens, how to listen and details about the ABC Classic 100 in Concert.

    Each year, ABC Classic celebrates the top 100 pieces of music chosen by audiences in a particular theme.
    • Need to Scan Important Documents? Use Your iPhone's Hidden Scanner CNET News
    • There’s no need to include ‘navigation’ in your navigation labels CSS-Tricks
    • Celeste Fans Need To Check Out This New Platformer ASAP Kotaku
    • What You Need to Know About How Tear Gas Harms Kids ProPublica
    • Microsoft 365 Security: Features You NEED to Know! #shorts How to Get an Analytics Job
    • Why you need to try the GitHub Copilot desktop app GitHub
    • What Enterprise Leaders Need to Know About Hybrid Data and AI The Ravit Show
    • Claude 4.8 - Three Things You Need To See Tyler Moore
    • Spring Security 7 Crash Course [2026] – Everything You Need to Know Amigoscode
    • You're writing twice as much CSS as you need to Kevin Powell
  • GitHub Blog github.blog developer github technology 2026-06-09 16:00
    ↗

    Custom agents let GitHub Copilot CLI understand your stack and team workflows, turning one-off terminal prompts into repeatable, reviewable processes. The post From one-off prompts to workflows: How to use custom agents in GitHub Copilot CLI appeared first on The GitHub Blog.

    Developers work across many surfaces like the CLI, IDE, and GitHub. The terminal is often where they turn to move fast, automate tasks, or work directly with systems and scripts.

    Tools like the GitHub Copilot CLI already make this easier. You can generate commands, debug issues, and move quicker without leaving the terminal.

    However, like any environment, the CLI can still accumulate friction: re-running the same commands, re-explaining context, or translating logs for your team into something they can act on. These small steps add up, especially when every team’s stack and standards are a little different.

    But what if your terminal didn’t just run commands, it understood your stack, your tools, and your team’s standards?

    That’s where custom agents come in. Instead of starting from scratch each time, you can encode your team’s context into reusable workflows that go beyond one-off prompts.

    With custom agents in the CLI, you can turn repeated tasks and patterns into consistent, reviewable workflows that fit naturally alongside your other tools, further tailoring GitHub Copilot CLI with expertise for specific development tasks.

    What are custom agents?

    A custom agent is a Copilot agent that can be defined using a Markdown file. Instead of relying on generic behavior, you describe how the agent should operate, what tools it can use, what standards it should follow, and what outputs it should produce. The result: its behavior is consistent wherever it runs.

    Each coding agent you create can act as a specialized agent tailored for a specific task. For example, a generic coding agent might suggest how to clean up your code. But a custom agent can apply your formatting rules, tooling, accessibility standards, review requirements, and safety requirements every time it runs.

    Custom agents are defined using agent profiles, or files that live directly in your repository. Written in Markdown, these agent profiles let you specify:

    • The agent’s role and area of expertise
    • Which tools it can access
    • Guardrails that keep outputs safe and consistent

    The snippet below shows the beginning of an agent profile that acts as an expert assistant for web accessibility:

     --- 
    
    description: 'Expert assistant for web accessibility (WCAG 2.1/2.2), inclusive UX, and a11y testing'  
    name: 'Accessibility Expert'  
    model: GPT-4.1  
    tools: ['changes', 'codebase', 'edit/editFiles', 'extensions', 'web/fetch', 'findTestFiles', 'githubRepo', 'new', 'openSimpleBrowser', 'problems', 'runCommands', 'runTasks', 'runTests', 'search', 'searchResults', 'terminalLastCommand', 'terminalSelection', 'testFailure', 'usages', 'vscodeAPI']
    
    # Accessibility Expert  
    
    You are a world-class expert in web accessibility who translates standards into practical guidance for designers, developers, and QA. You ensure products are inclusive, usable, and aligned with WCAG 2.1/2.2 across A/AA/AAA. 
    
    # Your Expertise 
    
    **Standards & Policy**: WCAG 2.1/2.2 conformance, A/AA/AAA mapping, privacy/security aspects, regional policies 

    Because the agent profile lives in your repository, your team can review it, version it, and share it so the same expectations follow the work from the CLI to the IDE and all the way into pull requests on GitHub.

    How custom agents work in GitHub Copilot CLI

    GitHub Copilot CLI is well suited for agent-driven work because it already runs scripts, calls APIs, and works directly with your repositories. Defining agents here lets you further tailor Copilot CLI by encoding execution-heavy workflows once, then invoking it from the terminal. The agent will execute your workflow the same way every time.

    To add a new custom agent for GitHub Copilot CLI, you’ll need to:

    1. Invoke the agent from Copilot CLI. From the terminal, run the Copilot CLI and use the /agentslash command. Select the custom agent you want to use.
    2. Create an agent profile in the .``github``/agents directory of your target repository. The agent profile is a Markdown file with YAML frontmatter that defines the agent’s role, scope, capabilities, and guardrails, so it behaves consistently in your workflows. The agent profile file ends with .agent.md – for example, accessibility.agent.md.
    Screenshot of the GitHub Copilot CLI listing available custom agents.

    Because the agent profile is a file in your repository, it can be reviewed, updated, and shared.

    Common workflows you can automate with custom agents

    The best place to start with custom agents is with tasks your team already repeats, many of which often begin in the terminal and continue in the IDE and on GitHub.

    Here are a few practical scenarios:

    Security audit agent

    Run your team’s standard security checks across your repositories, summarize findings by severity, and output a pull request-ready checklist with owners and next steps.

    # .github/agents/security-audit.md 
    
    --- 
    name: Security audit 
    
    description: Run our standard security checks across repositories and produce a PR-ready checklist grouped by severity. 
    
    tools: 
    
    # Keep this list aligned with what your team actually runs in CI. 
    
    - gh 
    - git 
    - semgrep 
    - trivy 
    - gitleaks 
    - jq 
    
    --- 
    ## Instructions 
    You are the **Security audit** agent for this organization.
    
    ### Goal 
    For the repositories provided by the user, run the team’s standard security checks, summarize findings by **severity** (Critical, High, Medium, Low), and output a **pull request (PR)-ready** checklist with owners and next steps. 
    
    ### Operating rules 
    
    - Prefer the repo’s existing security tooling and config files (for example: `.semgrep.yml`, `.trivyignore`, `.gitleaks.toml`) when present. 
    - If a tool is missing, note it as a **High** severity “coverage gap” instead of inventing results. 
    - Don’t paste secrets or full vulnerable payloads into output. Redact tokens and credentials. 
    - Use inclusive language (use allowlist/denylist). 
    - When referencing dates, use the format “March 23, 2026”. 
    
    ### Standard checks to run (per repository) 
    
    1. Secret scanning locally: 
    - `gitleaks detect --redact --no-git --source .` (or use the repository’s preferred invocation) 
    
    2. Container scanning (if a container image or Dockerfile exists): 
    - `trivy fs .` 
    
    3. SAST (if semgrep config exists): 
    - `semgrep scan --config .semgrep.yml` 
    
    4. Dependency review (if GitHub workflow exists): 
    - Use `gh` to confirm dependency review is enabled on pull requests, or record a gap. 
    
    ### Ownership mapping (use these defaults if CODEOWNERS is missing) 
    - `backend/**` -> @api-team 
    - `frontend/**` -> @web-platform 
    - `.github/workflows/**` -> @platform-eng 
    - `terraform/**` -> @infra-oncall 
    - Otherwise -> @security-champions 
    
    ### Output format (copy/paste into a pull request description) 
    Produce a single Markdown report with:
    
    - A short **Summary** section with counts by severity 
    - Sections for **Critical**, **High**, **Medium**, **Low** 
    - Each finding formatted as a checklist item: 
    
    Example item format: 
    
    - [ ] **[H-1] <short title> (<repo>)** 
    - **Repository:** `<owner/name>` 
    - **Area:** `<path or component>` 
    - **Owner:** `@team-or-user` 
    - **What to do next:** `<1–3 concrete steps>` 
    - **Command(s):** `<what you ran or what to run to verify>` 
    
    ### Final step 
    At the end, add a “Next steps” section with: 
    
    - who should open the follow-up pull requests 
    - suggested sequencing (Critical within 24 hours, High within 7 days, etc.) 

    Infrastructure as code compliance agent

    Review plans and manifests against your organization’s guardrails and policies. Highlight risky changes, and generate a concise, approval-ready summary.

    # .github/agents/iac-compliance.md 
    
    --- 
    name: IaC compliance 
    
    description: Review Terraform plans and Kubernetes manifests against our guardrails, highlight risky changes, and produce an approval-ready summary. 
    
    tools: 
    
    - gh 
    - terraform 
    - conftest 
    - opa 
    - kubeconform 
    - jq 
    
    --- 
    ## Instructions 
    
    You are the **IaC compliance** agent for this organization.  
    
    ### Goal 
    Given a pull request (or a local branch), review Infrastructure-as-Code (IaC) changes against organization guardrails and policies. Highlight risky changes and produce a concise, approval-ready summary that a human can use to approve (or request changes) quickly. 
    
    ### What to review 
    
    - Terraform:
    - `*.tf`, `*.tfvars`, `*.tf.json` 
    - `terraform plan` output (when available) 
    - Kubernetes: 
    - `*.yml`, `*.yaml` manifests (including Helm-rendered output if provided) 
    
    ### Guardrails to enforce (examples) 
    Treat the following as policy requirements unless the repository explicitly documents an exception: 
    
    - No publicly accessible resources unless explicitly approved (internet-facing load balancers, `0.0.0.0/0` ingress, public S3 buckets) 
    - No wildcard permissions in IAM policies (avoid `Action: "*"`, `Resource: "*"`) 
    - Encryption required at rest for managed storage services 
    - Require version pinning for Terraform providers and modules 
    - Kubernetes manifests must: 
    - Set resource requests and limits 
    - Avoid privileged containers and `hostNetwork: true` 
    - Avoid `latest` image tags 
    - Use non-root users where possible  
    
    ### How to run checks (prefer what the repository already uses) 
    
    1. **Terraform plan (if Terraform changes exist)** 
    
    - `terraform fmt -check` 
    - `terraform init -backend=false` 
    - `terraform validate` 
    - `terraform plan -out tfplan` 
    - `terraform show -json tfplan > tfplan.json` 
    
    2. **Policy evaluation** 
    
    - If `policy/` exists, treat it as the source of truth for OPA policies. 
    - Run: 
    - `conftest test tfplan.json -p policy/` 
    - `conftest test k8s-rendered.yaml -p policy/` (if manifests exist) 
    
    3. **Manifest validation** 
    
    - `kubeconform -strict -summary <file-or-dir>` 
    
    ### Risk scoring 
    Classify each notable finding into: 
    
    - **High risk**: likely security exposure or broad blast radius (public ingress, wildcard IAM, deletion of critical resources) 
    - **Medium risk**: potential operational impact (autoscaling changes, node selectors removed, timeouts reduced) 
    - **Low risk**: style, minor drift, missing metadata 
    
    ### Output format (approval-ready) 
    Return a single Markdown section that a reviewer can paste into a pull request comment: 
    
    ```markdown 
    
    ## IaC compliance summary 
    
    **Scope:** Terraform and Kubernetes changes in this pull request  
    **Overall risk:** <Low|Medium|High> 
    **Policy result:** <Pass|Fail|Pass with notes> 
    
    ### High-risk findings 
    
    - [ ] <finding> — **Owner:** @team — **Path:** `<path>` — **What to change:** <1 sentence> 
    
    ### Medium-risk findings 
    
    - [ ] <finding> — **Owner:** @team — **Path:** `<path>` — **What to change:** <1 sentence> 
    
    ### Low-risk findings 
    
    - [ ] <finding> — **Owner:** @team — **Path:** `<path>` — **What to change:** <1 sentence> 
    
    ### Evidence (commands run) 
    
    - `terraform plan ...` 
    - `conftest test ...` 
    - `kubeconform ...` 
    
    ### Recommendation 
    
    <Approve / Request changes / Block, with 1–3 bullets explaining why> 
    
    ``` 
    ### Notes 
    
    - Be explicit about what changed and why it matters (developer-to-developer tone). 
    - If you can’t run a check (missing tooling, no plan output, etc.), call it out under **Evidence** as a gap. 
    - Don’t include secrets or full credentials in the output; redact them. 

    Release docs agent

    Gather merged pull requests since the previous release, categorize them, and draft release notes in your team’s style. Update the repo’s CHANGELOG.md and include a short release checklist that includes tests, migrations, and rollout/rollback notes.

    # .github/agents/release-docs.md 
    
    --- 
    name: Release docs 
    
    description: Draft release notes from merged PRs since the previous release, update CHANGELOG.md, and output a short release checklist (tests, migrations, rollout/rollback). 
    
    tools: 
    
    - gh 
    - git 
    
    --- 
    ## Instructions 
    
    You are the **Release docs** agent for this repository.
    
    ### Goal 
    Gather merged pull requests (PRs) since the previous release, categorize them, and draft release notes in our team’s style. Update `CHANGELOG.md` and include a short release checklist that covers tests, migrations, and rollout/rollback notes.  
    
    ### Inputs to request if missing 
    
    - The previous release tag (for example: `v1.12.3`) 
    - The new release version (for example: `v1.13.0`) 
    - The target branch (default: `main`) 
    
    ### How to gather changes 
    
    1. Identify the compare range: 
    - Prefer `git` tags. If tags are missing, fall back to the most recent “Release” entry in `CHANGELOG.md`. 
    
    2. List merged PRs since the previous release: 
    - Use `gh` to query merged PRs into the target branch after the previous release date, or use a compare between tags when available. 
    
    3. Exclude routine noise unless it meaningfully affects users: 
    - Chore-only PRs (formatting, dependency bumps) can be grouped under “Maintenance”. 
    
    ### Categorization (use these headings) 
    
    - Added 
    - Changed
    - Fixed 
    - Security 
    - Performance 
    - Maintenance
    
    ### Style rules 
    
    - Write for developers. Be direct and practical. 
    - Use sentence case for headings. 
    - Don’t anthropomorphize the agent. 
    - Avoid “we” unless it’s necessary; prefer “you” where it’s actionable. 
    - Don’t invent impact or claims. If a PR title is unclear, use the PR body or ask for clarification.
    
    ### Output requirements 
    
    1. Produce a `CHANGELOG.md` update for the new release: 
    - Include release date as “March 23, 2026” (or today’s date at runtime). 
    - Include bullet points with PR numbers and short descriptions. 
    
    2. Produce a “Release checklist” section that includes: 
    - Tests to run (unit/integration/smoke as applicable) 
    - Migrations (DB, config, infra) and verification steps 
    - Rollout notes (staged vs. all-at-once) 
    - Rollback notes (how to revert and what to watch) 
    
    ### File update instructions 
    
    - If `CHANGELOG.md` exists, append a new section at the top. 
    - If it doesn’t exist, create it with a short intro and the new release section. 
    - Only modify `CHANGELOG.md` unless the user explicitly asks to edit other files. 
    
    ### Final response format 
    Return: 
    
    1. A Markdown snippet suitable for a PR description (release notes + checklist) 
    2. The updated `CHANGELOG.md` content to commit 

    Incident response agent

    Given a service name and time window, gather “first look” data such as recent deploys, error rates, top endpoints, and relevant logs. Produce an incident report using your team’s template and suggest next steps.

    # .github/agents/incident-response.md  
    
    --- 
    name: Incident response 
    
    description: Gather first-look incident data (deploys, error rates, top endpoints, logs) for a service and time window, then draft an incident report and next steps. 
    
    tools: 
    
    - gh 
    - git 
    - jq 
    - curl 
    
    --- 
    ## Instructions 
    
    You are the **Incident response** agent.  
    
    ### Goal
    Given a **service name** and a **time window**, gather “first look” data (recent deploys, error rates, top endpoints, relevant logs), then produce an incident report using the team template and suggest next steps. 
    
    ### Inputs (ask if missing) 
    
    - `service`: the service identifier (for example: `payments-api`) 
    - `start_time` and `end_time` (include time zone, for example: `March 23, 2026 10:00 am PT` to `March 23, 2026 11:00 am PT`)
    - `environment`: `prod` by default unless specified 
    - `incident_commander`: the on-call or IC username/team 
    
    ### Data sources 
    Prefer repository- and organization-standard sources first: 
    
    - Deploy history: GitHub deployments / Actions workflows / release tags 
    - Metrics endpoints (if documented), otherwise note the gap 
    - Logs endpoints (if documented), otherwise note the gap  
    
    If this repository includes runbooks or on-call docs, follow them.  
    
    ### What to gather (first look) 
    
    1. **Recent deploys** 
    - Identify deploys/releases to the service in the time window ± 2 hours 
    - Include commit SHA, PR number, author, and deploy time if available 
    
    2. **Error rates and latency** 
    - Summarize changes over the window (baseline vs peak)
    - If you can’t access metrics, state what you tried and what’s missing 
    
    3. **Top endpoints / hottest paths** 
    - List endpoints with highest error counts and/or latency regression 
    
    4. **Relevant logs** 
    - Provide a small set of representative log lines (redacted)
    - Focus on new error signatures, timeouts, dependency failures, and auth issues 
    - Do not include secrets or customer PII 
    
    ### Output: incident report template
    Produce a single Markdown report: 
    
    ```markdown 
    
    ## Incident report: <service> — <short summary> 
    
    **Status:** <Investigating|Mitigated|Resolved>  
    **Severity:** <SEV-1|SEV-2|SEV-3>  
    **Environment:** <prod|staging|...>  
    **Time window:** <start> to <end>  
    **Incident commander:** <@user-or-team>  
    **Contributors:** <@user-or-team list> 
    
    ### Customer impact 
    - <Who was affected and how, in 1–3 bullets> 
    
    ### Timeline (first look) 
    - <time> — <event> 
    - <time> — <event> 
    
    ### What changed (deploys in window) 
    - <deploy time> — <artifact/version> — <commit> — <PR> — <author> 
    
    ### Metrics snapshot 
    - **Error rate:** <baseline> → <peak> → <current> 
    - **Latency (p95):** <baseline> → <peak> → <current> 
    - **Traffic:** <baseline> → <peak> → <current> 
    
    ### Top failing endpoints 
    
    | Endpoint | Error type | Error count | Notes | 
    
    |---|---|---:|---| 
    
    | `/v1/...` | `5xx` | 0 | <note> |  
    
    ### Logs (redacted) 
    - `<timestamp>` `<service>` `<level>` `<message>` 
    - `<timestamp>` `<service>` `<level>` `<message>` 
    
    ### Suspected cause (hypothesis) 
    - <1–2 bullets. Clearly label as hypothesis.> 
    
    ### Next steps 
    
    **Immediate (0–30 min)** 
    - [ ] <action> — **Owner:** <@team> 
    
    **Short term (today)** 
    - [ ] <action> — **Owner:** <@team> 
    
    **Follow-up (this week)** 
    - [ ] <action> — **Owner:** <@team> 
    
    ```  
    
    ### Notes 
    
    - Be explicit about uncertainty. If data is missing, write “Unknown (data unavailable)” and list what’s needed. 
    - Use inclusive language (allowlist/denylist). 
    - Use short, scannable bullets. Avoid hype and anthropomorphizing. 
    - Redact secrets and personal data. 

    How to choose between off-the-shelf agents vs. your own custom agents

    After working with our partners like JFrog, Dynatrace, Octopus Deploy, arm, and others, we offer a number of off-the-shelf agents to help you get started quickly in areas like observability, infrastructure as code, and security.

    These agents come with specific workflows and tool-specific knowledge baked in, making them a fast way to see immediate value without defining an agent from scratch (plus, you can always mod them to fit your exact needs). Teams often treat partner agents as a starting point to then create their own custom agent.

    But you can also create your own custom agents with your own Markdown files that are more specific to your rules, tools, and conventions.

    Use off-the-shelf agents when you want to:

    • Try a working agent with minimal setup: No need to design prompts, outputs, or create guardrails from scratch.
    • Lean on tool-specific expertise: You’re using a partner product and want an agent that already knows the commands and best practices.
    • Standardize around a partner’s recommended practices: You want consistency with how a tool is intended to be used.
    • Cover repeatable tasks across repos: For example, baseline security checks, common reviews, or other patterns that apply to multiple services.

    Use custom agents when you want to:

    • Define how your team gets work done: Your team has conventions like naming, review standards, and security checks, and you want the agent to follow them every time.
    • Integrate with your exact stack and internal tooling: Useful if you rely on things like internal APIs or nonstandard tooling that a partner agent wouldn’t know about.
    • Reduce glue work in your workflow: You can have an agent that runs the same sequence across incidents, releases, or audits.
    • Version and evolve your workflow like code: You can improve the agent over time, review changes, and share it across your team as a maintained asset.
    💡 A good rule of thumb: Use off-the-shelf agents for speed and tool-specific best practices, and custom agents when you need precision, continuity, and control.

    There’s a growing ecosystem of partner agents that your team can try immediately. Check out our Awesome Copilot list of custom agents.

    How to get started with custom agents

    First, you’ll need to install GitHub Copilot CLI.

    Once you’re ready to go, start with a workflow you already repeat, then make it consistent. Choose a task that happens every week and turn it into an agent that runs the same checks, uses the same tools, and produces the same reviewable output.

    If you’re new to agents, try a partner agent first to test the workflows and get a feel for the new workflow. Browse partner-built agents and try one in the CLI.

    You can also create a small custom agent that you can continue to iterate on. For example:

    • Take a pull request title plus labels, and generate a correctly formatted CHANGELOG.md entry.
    • Turn a bug report into a structured issue comment with reproduction steps, environment information, severity, and suggested next steps.

    Custom agents help standardize your workflows by taking the knowledge from scattered notes and one-use prompts and turning them into reusable, structured workflows you (and your team) can rely on.

    This becomes especially valuable for teams, where the same task can be approached differently depending on who’s running it. With custom agents, these workflows become shared, repeatable, and easier to review.

    They also let fast, execution-heavy tasks start in the CLI, carry context into the IDE, and land on GitHub as reviewable, shippable work. Rather than losing context between steps, agents help maintain continuity across your toolchain.

    Once you encode the workflows that matter to your team, Copilot CLI becomes less about asking for help and more about reliably supporting how your team actually works day to day.

    Learn more

    • Creating and configuring agent profiles
    • Using GitHub Copilot CLI
    • List of partner custom agents for GitHub Copilot

    The post From one-off prompts to workflows: How to use custom agents in GitHub Copilot CLI appeared first on The GitHub Blog.

    • GitHub Copilot CLI for Beginners: Overview of common slash commands GitHub Blog
    • How we made GitHub Copilot CLI more selective about delegation GitHub Blog
    • Give GitHub Copilot CLI real code intelligence with language servers GitHub Blog
    • Introducing Copilot CLI and agentic features in JetBrains IDEs GitHub
    • Copilot CLI Tutorial #11 - Delegating Tasks to the Cloud The Net Ninja
    • Copilot CLI Tutorial #10 - Code Review Agent The Net Ninja
    • Copilot CLI Tutorial #9 - Custom Agents The Net Ninja
    • Copilot CLI Tutorial #8 - MCP Servers The Net Ninja
    • Copilot CLI Tutorial #7 - Skills The Net Ninja
    • Copilot CLI Tutorial #6 - Plan Mode The Net Ninja
    • Copilot CLI Tutorial #5 - Context Management The Net Ninja
  • GitHub youtube.com channel informational video youtube 2026-06-13 15:00
    ↗

    The GitHub Copilot desktop app just got a massive update at Microsoft Build. It is now in an expanded technical preview packed with new features like canvases and voice support. You can now use isolated Git work trees and secure sandboxes to protect your local environment...

    ▶ Watch on YouTube Opens in a new tab
    The GitHub Copilot desktop app just got a massive update at Microsoft Build. It is now in an expanded technical preview packed with new features like canvases and voice support. You can now use isolated Git work trees and secure sandboxes to protect your local environment from unwanted changes. Check out the latest updates and try the agent-native experience today. #GitHubCopilot #GitHub #MicrosoftBuild Stay up-to-date on all things GitHub by connecting with us: YouTube: https://gh.io/subgithub Blog: https://github.blog X: https://twitter.com/github LinkedIn: https://linkedin.com/company/github Insider newsletter: https://resources.github.com/newsletter/ Instagram: https://www.instagram.com/github TikTok: https://www.tiktok.com/@github About GitHub It’s where over 180 million developers create, share, and ship the best code possible. It’s a place for anyone, from anywhere, to build anything—it’s where the world builds software. https://github.com
    • GitHub Copilot CLI for Beginners: Overview of common slash commands GitHub Blog
    • How we made GitHub Copilot CLI more selective about delegation GitHub Blog
    • Give GitHub Copilot CLI real code intelligence with language servers GitHub Blog
    • From one-off prompts to workflows: How to use custom agents in GitHub Copilot CLI GitHub Blog
    • Jueves de Quack: GitHub Copilot App GitHub
    • RDT: Exploring the GitHub Copilot App GitHub
    • How ASOS ships code faster with GitHub Copilot GitHub
    • How to take work from issue to merge with the GitHub Copilot app GitHub
    • Exploring the agent-first GitHub Copilot desktop app | GitHub Checkout GitHub
    • What can you do with the GitHub Copilot app? GitHub
    • Modernize .NET Apps with GitHub Copilot dotNET
  • Quanta Magazine quantamagazine.org biology computer-science longform math mathematics physics quanta science 2026-06-11 13:37
    ↗

    In the first episode of the new season of ‘The Joy of Why,’ Nobel Laureate Jennifer Doudna discusses how she discovered CRISPR’s genome-editing power, the breakthroughs and hurdles during its explosive growth, and what lies ahead for this groundbreaking technology. The post...

    One of the most surprising and remarkable discoveries in recent scientific history has been CRISPR. Short for Clustered Regularly Interspaced Short Palindromic Repeats, CRISPR is a form of immune system that evolved in bacteria more than a billion years ago to defend against persistent viral threats. Under attack, bacteria can snip a small fragment of a virus’s DNA, store it in the CRISPR region…

    Source

    • A vocabulary for the future: poetry Psyche
    • US-Iran deal leaves the future of Lebanon uncertain – and subject to Israel playing the spoiler The Conversation US
    • Stanford CS153 Frontier Systems | Scale, AGI, and the Future of Everything stanfordonline
    • My thoughts on the future of Go Package main
    • The Future of Home Computing: Radical Changes Ahead? ExplainingComputers
    • Microsoft’s CEO Just Explained the Future of Development and Business Stefan Mischook
    • AI Tutors: The Future of Learning & Engineering Open Data Science
    • Cisco's Vision for AI-Native Operations: Cloud Control, AI Canvas, and the Future of IT #ai #data The Ravit Show
    • Cisco Just Showed the Future of Networking NetworkChuck
    • Unlocking the Future of Automation with Modern DevOps | Tech Talk Fredrik Christenson
  • The Guardian - US News theguardian.com guardian news uk us 2026-06-18 17:25
    ↗

    Wealth tax criticized by billionaires and Gavin Newsom would levy a one-time 5% tax on residents worth over $1bnA controversial proposal in California to impose a wealth tax on billionaires has gained enough signatures to qualify for the ballot in November, state officials...

    Wealth tax criticized by billionaires and Gavin Newsom would levy a one-time 5% tax on residents worth over $1bn

    A controversial proposal in California to impose a wealth tax on billionaires has gained enough signatures to qualify for the ballot in November, state officials announced on Wednesday.

    The news is set to intensify an already heated debate around the tax, which has pitted tech moguls and the state’s governor, Gavin Newsom, against the labor unions backing the measure.

    Continue reading...
    • California ‘billionaire tax’ makes ballot despite opposition from tech moguls The Guardian - Technology
    • California ‘billionaire tax’ makes ballot despite opposition from tech moguls The Guardian - US
  • ProPublica propublica.org investigative journalism news 2026-06-10 09:00
    ↗

    The post What You Need to Know About How Tear Gas Harms Kids appeared first on ProPublica.

    A woman adjusts a large respirator mask with bright pink filters onto a young girl’s face.
    Mindan Ocon poses for a photo with her daughter, Angelise Ocon, 3, at their family home in Portland, Oregon, on March 9. Protests at the Immigration and Customs Enforcement facility have turned the street outside Ocon’s affordable housing complex into a battlefield of stinging smoke and pepper spray. Ocon has relied on air purifiers and taking her daughter into the bathroom to hide from tear gas, and she’s prepared to use gas masks given to her by community members if it gets worse. Leah Nash for ProPublica

    In city after city, the Trump administration’s immigration crackdown has been met by protests and rallies from members of the local community opposed to the White House’s deportation policies. Federal agents from the Customs and Border Protection and Immigration and Customs Enforcement have repeatedly attempted to break up and drive back these crowds through the use of airborne irritants like tear gas and pepper spray, which can cause an array of immediate reactions — from eye pain to shortness of breath to nausea and vomiting — intended to temporarily disable their targets.

    DHS has defended its use of these weapons on crowds and said that it “does NOT target children,” but after reviewing news accounts, lawsuits and officer-worn body camera footage, as well as verifying incidents by interviewing more than 40 victims or witnesses, ProPublica recently identified more than six dozen instances in which children had been harmed by tear gas and pepper spray.

    Here are five things you should know about how these airborne weapons have been used during Trump’s immigration crackdown and how their use has particularly harmed children.

    Dozens of children have been harmed by tear gas deployed by immigration agents.

    So-called less lethal weapons like tear gas and pepper spray were developed to inflict severe pain and debilitate adult combatants and rioters, but ProPublica identified 79 children across the country since 2025 who have been harmed by these chemicals after they were deployed by federal immigration officers. Our tally is nearly four times the number cited in a recent congressional report, yet it is likely still a vast undercount.

    The Department of Homeland Security has defended its agents’ use of the chemicals and claimed the blame lies with “agitators” in the crowds and parents who put their children in harm’s way. Many children harmed by tear gas and pepper spray were in their cars, at home or walking to school when they came into contact with the airborne weapons.

    What It’s Like When Officers Deploy Tear Gas

    Tear gas and pepper spray are especially toxic to children.

    There is no one such thing as “tear gas.” It’s a catch-all term for various chemical irritants that exist as a fine powder and trigger nerve endings to feel as if they’re on fire. The chemicals sear your lungs and throat, inflaming your airways until it feels like you’re breathing through a straw, while snot and tears stream down your face. They can cause vomiting, rashes and coughs that last for weeks. Pepper spray is made from compounds found in hot peppers and causes similar effects.

    Because children breathe more rapidly and can pull in more contaminated air than adults relative to their body weight, these weapons are particularly dangerous to the young. Children are also more vulnerable because they have narrower airways and they are closer to the ground, where tear gas tends to pool after being deployed. The Trump administration’s use of tear gas has been so extraordinary that no one yet knows what long-term harm may result from children who’ve come into contact with these chemicals — some of them multiple times.

    Courts have found that agents’ use of tear gas is excessive, but their power is limited.

    In November 2025, a federal judge in Illinois ruled that ICE and CBP officers had deployed these chemicals “without justification, often without warning” against people who didn’t pose a physical threat. This constituted an illegal use of excessive force, said the judge, ordering the agencies to stop. But her injunction covered only the areas mentioned in the complaint. Agents were unfettered to continue using the weapons elsewhere.

    After federal agents in Portland, Oregon, responded to a Jan. 31 rally by firing various less-lethals into the crowd — including Triple Chaser grenades that each separated into three tear gas canisters; dozens of pepper ball projectiles filled with chemical munitions; and “rubber ball grenades” that released stinging pellets, bright lights, and loud sounds — a judge there issued a temporary restraining order that forbade federal agents from using chemical munitions unless targeted at someone who posed “an imminent threat of physical harm.”

    However, appellate courts have subsequently vacated the Illinois judge’s ruling and multiple rulings from judges in Portland seeking to enjoin the use of these weapons.

    Once deployed, these weapons are difficult to contain.

    Though the Trump administration has defended agents’ training and said ICE officers are taught to use “the minimum amount of force necessary to resolve dangerous situations,” not only can tear gas canisters launched into a crowd bounce and roll unpredictably, but the toxic chemicals can travel through the air, sometimes for blocks. In Minneapolis, ProPublica found that tear gas had traveled at least a quarter mile before seeping into a McDonald’s.

    Derrick Nash and his family live a block and a half east of an ICE facility in Broadview, Illinois. Even from that distance, they felt the effects inside their homes when officers tear-gassed protesters. Each time the tear gas seeped in, the kids — ages 6 to 17 — coughed, and their throats often burned. The eldest, a high school senior with asthma, would hide out in his second-floor bedroom. One evening, his face turned red as he coughed uncontrollably and sucked on his inhaler without relief.

    “He was wigging out, saying, ‘I can’t breathe,’” Nash recalled. The family considered calling an ambulance, but the street was closed.

    No national standard for use of tear gas exists.

    Law enforcement policies governing the use of tear gas and pepper spray differ widely by location, and no federal standard exists. The DHS policy on force says officers must use tactics that “minimize the risk of unintended injury” and should be guided by “respect for human life.” The CBP’s policy says officers “should not use” pepper spray or “less-lethal” chemical munitions against “small children.” ICE’s policy says “the presence of other officers, subjects, or bystanders” are a factor in determining whether an officers’ use of force is reasonable.

    Read More

    Kids Are Being Harmed by Tear Gas, Pepper Spray Under Trump. There Could Be Long-Term Consequences.
    At 17, He Was Tear-Gassed at Selma. At 78, He’s Watching Kids Tear-Gassed During Trump’s Deportation Campaign.
    U.S. Lawmakers Demand Reforms to Immigration Officers’ Use of Tear Gas and Pepper Spray

    Compare that with tear gas policies in two cities that have experienced Trump’s immigration crackdown firsthand. In Portland, police officers who consider using tear gas must take into account their proximity to homes. Meanwhile, Minneapolis forbids officers from using chemical munitions for crowd control unless authorized by the police chief — even when officers fear they will be physically harmed.

    Requiring all law enforcement agencies to adopt uniform policies and training methods would go a long way, experts told ProPublica. At the same time, they acknowledge that this would likely require Congress to pass a bill mandating that federal law enforcement entities adopt stricter practices and incentivize local police departments to do the same.

    Bills that seek to strengthen use-of-force training on such a wide scale and legislation that targets DHS and its use of these weapons have thus far failed to even make it to a vote in Congress. Following ProPublica’s investigation, U.S. lawmakers have begun demanding reforms to immigration officers’ use of these weapons.

    The post What You Need to Know About How Tear Gas Harms Kids appeared first on ProPublica.

    • Everything you need to know about the ABC Classic 100: Greatest of All Time ABC News (Australia)
    • Need to Scan Important Documents? Use Your iPhone's Hidden Scanner CNET News
    • There’s no need to include ‘navigation’ in your navigation labels CSS-Tricks
    • Celeste Fans Need To Check Out This New Platformer ASAP Kotaku
    • Microsoft 365 Security: Features You NEED to Know! #shorts How to Get an Analytics Job
    • Why you need to try the GitHub Copilot desktop app GitHub
    • What Enterprise Leaders Need to Know About Hybrid Data and AI The Ravit Show
    • Claude 4.8 - Three Things You Need To See Tyler Moore
    • Spring Security 7 Crash Course [2026] – Everything You Need to Know Amigoscode
    • You're writing twice as much CSS as you need to Kevin Powell
  • Amigoscode youtube.com channel tutorial video youtube 2026-06-02 13:59
    ↗

    👉 Land the job. Get the promotion. Become a better dev. https://skool.com/amigoscode-academy Spring Security is one of those topics most developers never fully understand - until now. In this updated 2026 crash course, I'll teach you everything you need to get up and running...

    ▶ Watch on YouTube Opens in a new tab
    👉 Land the job. Get the promotion. Become a better dev. https://skool.com/amigoscode-academy Spring Security is one of those topics most developers never fully understand - until now. In this updated 2026 crash course, I'll teach you everything you need to get up and running with Spring Security 7 (on Spring Boot 4 and Java 25). We cover the core architecture and the security filter chain, then implement real authentication step by step: Form Login, Basic Authentication, sessions & the JSESSIONID cookie, CSRF, the Authentication Manager & providers, custom UserDetailsService, and password encoding. By the end you'll understand how Spring Security actually works under the hood — and be able to confidently put it on your CV and demonstrate it in interviews. ⭐ Get the full course + diagrams + source code: https://skool.com/amigoscode 💬 Join the free community to ask questions & grab resources: https://skool.com/amigoscode 🧰 Requirements: • Java 25+ • Spring Boot 4 • Spring Security 7 📂 Source code & branches: https://github.com/amigoscode/spring-security ⏱️ *TIMESTAMPS* 00:00 Intro – what you'll learn 00:55 Spring Security architecture & the filter chain 07:14 Spring Security docs & versions (Spring Security 7) 10:49 Course repo & branches walkthrough 12:08 Requirements (Java 25, Spring Boot 4) & running the starter 16:42 Form Login – how it works (diagram) 20:38 Implementing Form Login (SecurityConfig) 27:38 Running the app & testing login 32:31 The JSESSIONID cookie explained 37:45 Storing sessions in Redis / JDBC 43:42 Customizing the login & logout 47:39 Exploring the filters in the source code 51:50 Basic Authentication – how it works (diagram) 56:10 Configuring Basic Auth (stateless + CSRF disabled) 1:01:54 Testing Basic Auth (browser, Base64, curl) 1:14:27 Realm name & WWW-Authenticate header 1:16:30 CSRF explained 1:18:45 Authentication Manager & Provider Manager 1:21:20 Debugging the DAO Authentication Provider 1:28:11 Custom users with UserDetailsService 1:36:11 Why login fails – the password encoder & NoOp 1:42:24 Password encoding & why we never store plain text 1:43:14 Wrap up 🔔 *Subscribe for more backend & security content!* https://www.youtube.com/@amigoscode?sub_confirmation=1 👉 *Land the job. Get the promotion. Become a better dev.* https://skool.com/amigoscode-academy 🤝 *Connect with me* • Skool: https://skool.com/amigoscode • LinkedIn: https://www.linkedin.com/in/nelsonamigoscode • Instagram: https://www.instagram.com/amigoscode • Twitter/X: https://x.com/amigoscode • GitHub: https://github.com/amigoscode #springSecurity #springboot #java
    • Everything you need to know about the ABC Classic 100: Greatest of All Time ABC News (Australia)
    • Need to Scan Important Documents? Use Your iPhone's Hidden Scanner CNET News
    • There’s no need to include ‘navigation’ in your navigation labels CSS-Tricks
    • Celeste Fans Need To Check Out This New Platformer ASAP Kotaku
    • What You Need to Know About How Tear Gas Harms Kids ProPublica
    • Microsoft 365 Security: Features You NEED to Know! #shorts How to Get an Analytics Job
    • Why you need to try the GitHub Copilot desktop app GitHub
    • What Enterprise Leaders Need to Know About Hybrid Data and AI The Ravit Show
    • Claude 4.8 - Three Things You Need To See Tyler Moore
    • You're writing twice as much CSS as you need to Kevin Powell
  • Real Python youtube.com channel python tutorial video youtube 2026-06-17 17:00
    ↗

    Download your free Python Cheat Sheet here: https://realpython.com/cheatsheet Free Python Skill Test with instant level + learning plan: https://realpython.com/skill-test Want to learn faster? Become a Python Expert with unlimited access to 5,000+ tutorials, videos, and...

    ▶ Watch on YouTube Opens in a new tab
    Download your free Python Cheat Sheet here: https://realpython.com/cheatsheet Free Python Skill Test with instant level + learning plan: https://realpython.com/skill-test Want to learn faster? Become a Python Expert with unlimited access to 5,000+ tutorials, videos, and exercises: https://realpython.com/start Listen to the full episode at https://realpython.com/podcasts/rpp/295 or wherever you get podcasts -- with Mikiko Bazeley (hosted by Chris Bailey). 🐍 Become a Python expert with real-world tutorials, on-demand courses, interactive quizzes, and 24/7 access to a community of experts at https://realpython.com ▰▰▰▰▰▰▰▰▰▰▰▰▰▰▰▰▰▰▰▰ 🐍 Start Here → https://realpython.com/start 🗺️ Guided Learning Paths → https://realpython.com/learning-paths 🎧 Real Python Podcast → https://realpython.com/podcast 📚 Python Books → https://realpython.com/books 📖 Python Reference → https://realpython.com/ref 🧑‍💻 Quizzes & Exercises → https://realpython.com/quizzes 🎓 Live Courses: https://realpython.com/live ⭐️ Reviews & Learner Stories: https://realpython.com/learner-stories ▰▰▰▰▰▰▰▰▰▰▰▰▰▰▰▰▰▰▰▰
    • Adobe Says Its Expanded AI Agents Are There to 'Guide You Down the Happy Path' CNET News
    • AI Agents Today Aren't Secure. They're Just Clumsy DEV Community
    • Announcing ADK for Kotlin and ADK for Android 0.1.0: Building AI Agents on Android and Beyond Google Developers Blog
    • Orphaned AI Agents: How to Find Hidden Access Risks Inside Your Network The Hacker News
    • Announcing ADK for Kotlin and ADK for Android 0.1.0: Building AI Agents on Android and Beyond Google Developers Blog
    • Research Paper: AI Agents and the ReAct Pattern Gaurav Sen
    • AI Agents as "Games Masters"? 🎮🔥 Two Minute Papers
    • Canceling Subscriptions, Building Local AI Agents Tina Huang
    • AI Agents Fail Tina Huang
    • How Modern AI Agents Work Under the Hood Harkirat Singh
    • If You're Building AI Agents in 2026, Watch This ft. @oracledevs Harkirat Singh
    • connecting all scientific knowledge for ai agents??? Yacine Mahdid
    • 3 patterns to build long-running AI agents Google Cloud Tech
    • Building long-running AI agents with ADK Google Cloud Tech
    • How to build reliable software with AI agents Google Cloud Tech
    • Voice for AI Agents and Applications DeepLearningAI
    • Securing AI Agents: Risk, Governance, Recovery, and Anthropic’s Mythos with Arvind Nithrakashyap Open Data Science
    • Generative UI: When AI Agents Design the Interface with Maxime Beauchemin and Evan Rusackas Open Data Science
    • Why the Way You're Giving AI Agents Data Access Is Probably Wrong The Ravit Show
    • Will AI Agents Replace Jobs in 2026? The Invisible Shift in Work Intellipaat
    • Build 3 PRODUCTION AI Agents in Python - Full Course (Agentspan) Tech With Tim
    • This is why my AI Agents never guess JavaScript Mastery
  • Google Cloud Tech youtube.com channel organizations video youtube 2026-06-15 19:00
    ↗

    Is AI generating more technical debt than value for your team? This video explores the vital role of human-in-the-loop verification and testing paradigms to ensure that coding agents reduce maintenance costs rather than just inflating output speed. Join Googler Smitha Kolan...

    ▶ Watch on YouTube Opens in a new tab
    Is AI generating more technical debt than value for your team? This video explores the vital role of human-in-the-loop verification and testing paradigms to ensure that coding agents reduce maintenance costs rather than just inflating output speed. Join Googler Smitha Kolan and the author of Beyond Vibe Coding, Addy Osmani, as they discuss why maintaining your engineering craft and a rigorous code review process is essential to keeping a codebase stable when moving at AI-accelerated velocities. Watch more The Agent Factory: Developer Power-Ups → https://goo.gle/Supercharge-Devs 🔔 Subscribe to Google Cloud Tech → https://goo.gle/GoogleCloudTech #DeveloperPowerUps Speakers: Smitha Kolan, Addy Osmani Products Mentioned: Gemini
    • Adobe Says Its Expanded AI Agents Are There to 'Guide You Down the Happy Path' CNET News
    • AI Agents Today Aren't Secure. They're Just Clumsy DEV Community
    • Announcing ADK for Kotlin and ADK for Android 0.1.0: Building AI Agents on Android and Beyond Google Developers Blog
    • Orphaned AI Agents: How to Find Hidden Access Risks Inside Your Network The Hacker News
    • Announcing ADK for Kotlin and ADK for Android 0.1.0: Building AI Agents on Android and Beyond Google Developers Blog
    • Research Paper: AI Agents and the ReAct Pattern Gaurav Sen
    • AI Agents as "Games Masters"? 🎮🔥 Two Minute Papers
    • Canceling Subscriptions, Building Local AI Agents Tina Huang
    • AI Agents Fail Tina Huang
    • How Modern AI Agents Work Under the Hood Harkirat Singh
    • If You're Building AI Agents in 2026, Watch This ft. @oracledevs Harkirat Singh
    • connecting all scientific knowledge for ai agents??? Yacine Mahdid
    • 3 patterns to build long-running AI agents Google Cloud Tech
    • Building long-running AI agents with ADK Google Cloud Tech
    • Voice for AI Agents and Applications DeepLearningAI
    • Securing AI Agents: Risk, Governance, Recovery, and Anthropic’s Mythos with Arvind Nithrakashyap Open Data Science
    • Generative UI: When AI Agents Design the Interface with Maxime Beauchemin and Evan Rusackas Open Data Science
    • Why the Way You're Giving AI Agents Data Access Is Probably Wrong The Ravit Show
    • Will AI Agents Replace Jobs in 2026? The Invisible Shift in Work Intellipaat
    • The 3 Types of AI Agents Every Developer Should Know Real Python
    • Build 3 PRODUCTION AI Agents in Python - Full Course (Agentspan) Tech With Tim
    • This is why my AI Agents never guess JavaScript Mastery
  • Codevolution youtube.com channel tutorial video web-development youtube 2026-06-11 04:30
    ↗

    I Built an AI Resume Agent That Tailors My Resume to Any Job with the new Cursor SDK “Resume Agent” that tailors a resume to a specific job posting via a Chrome extension. From a careers page, the extension extracts the role, company, and job description, sends them to a...

    ▶ Watch on YouTube Opens in a new tab
    I Built an AI Resume Agent That Tailors My Resume to Any Job with the new Cursor SDK “Resume Agent” that tailors a resume to a specific job posting via a Chrome extension. From a careers page, the extension extracts the role, company, and job description, sends them to a local API that protects the Cursor API key, and triggers a Cursor cloud agent using the Cursor TypeScript SDK with Composer 2.5. The agent clones a resume repository that contains both the resume and “agent skills” (instruction packs) to compare the posting against real experience, rewrite and reorganize the resume without inventing details, and automatically open a pull request. The PR includes an honest fit report, the tailored resume optimized for ATS, and a change summary explaining edits. The video covers the architecture, skills/guardrails, and the Cursor-based workflow used to build the monorepo (extension + API). Resume Agent - https://github.com/gopinav/resume-agent Resume Agent Skills - https://github.com/gopinav/resume-agent-skills 00:00 Intro 00:20 Demo 00:53 Pull Request Results 01:48 Build Overview 02:24 System Architecture 04:30 Skills And Guardrails 06:28 Planning With Cursor 3 08:22 Reviewing The Plan 10:28 Code Walkthrough 11:05 Cursor SDK 12:29 Beyond Resumes 13:04 Source code Become a job-ready developer with Scrimba https://scrimba.com/paths?via=Codevolution (Save 20% on Pro) Twitter - https://twitter.com/CodevolutionWeb Business - codevolution.business@gmail.com
    • Allbirds Used to Make Viral Wool Sneakers. Now It’s an AI Company Called ‘Smartbird.’ Entrepreneur.com
    • DeepInflation: an AI agent for research and model discovery of inflation arXiv - hep-th
    • I Hacked an AI Customer Service Agent in 8 Seconds Siraj Raval
    • I Built an AI That Wrote Me a Country Breakup Song Siraj Raval
    • I Quit Chrome for an AI Browser. It Actually Worked. Siraj Raval
    • Building an AI Interviewer From Scratch in 3 Hours Harkirat Singh
    • How an AI Agent Deleted PocketOS Production in 9 Seconds Kent C. Dodds
    • How to build an AI Agent and MCP Server (step-by-step) Google Cloud Tech
    • How to Add an AI Chatbot to Your Client's Website Code with Ania Kubów #JavaScriptGames
    • What Is an AI Agent? LLMs, Tools, and a Loop Real Python
    • How to Become an AI Engineer in 2026 Tech With Tim
    • They Killed an AI Model Overnight (Fable 5 & Mythos 5) Traversy Media
  • Codevolution youtube.com channel tutorial video web-development youtube 2026-06-11 14:47
    ↗

    Claude Fable 5 costs 2x more than Opus, so you probably don’t want to use it for everything. Here’s how I’d get the most out of it: 1. Use Fable to plan 2. Let Sonnet 4.6 handle the build 3. Give Fable goals, not step-by-step instructions 4. Give it a clear success and...

    ▶ Watch on YouTube Opens in a new tab
    Claude Fable 5 costs 2x more than Opus, so you probably don’t want to use it for everything. Here’s how I’d get the most out of it: 1. Use Fable to plan 2. Let Sonnet 4.6 handle the build 3. Give Fable goals, not step-by-step instructions 4. Give it a clear success and failure checklist 5. Bring Fable back to review the work and write learnings into a file for next time The workflow is simple: Fable plans. Sonnet builds. Fable reviews. Fable saves what it learns. Since Fable is only available until June 22, use it now to audit codebases, plan app ideas, and lock in the expensive thinking while you can. Then execute later with a cheaper model. Follow for more AI coding workflows. Become an AI Engineer with Scrimba https://scrimba.com/t0ai?via=Codevolution (Start Free, save 20% on Pro) Twitter - https://twitter.com/CodevolutionWeb Business - codevolution.business@gmail.com
    • Coding with Fable 5 is actually insane. ForrestKnight
    • They Beat Fable 5? (WHAT) Codedamn
    • I Used Fable 5 (Mythos) For 48 Hours - Here's My Review Codedamn
    • Claude Fable 5 Suspension and Refunds Codevolution
    • Building Tony Stark's 'Jarvis' with Claude Fable 5 DesignCourse
    • Claude Fable 5 UI/UX One-Shots - 5 Tests DesignCourse
    • Shocking Fable 5 Global Shutdown! #shorts KodeKloud
    • They Killed an AI Model Overnight (Fable 5 & Mythos 5) Traversy Media
    • BREAKING: The US government just took down Claude Fable 5 and it's worse than it looks Ebenezer Don
    • They shut down Claude Fable 5. It's worse than it looks Ebenezer Don
    • Anthropic's best model ever... that you're not allowed to use: Fable 5 #ai #claude #chatgpt Ebenezer Don
    • Claude Fable 5 is here. Nobody can use it. Ebenezer Don
  • The Guardian - World theguardian.com guardian news uk world 2026-06-18 19:49
    ↗

    Former presidents, heads of state and celebrities converged on a lakefront park in Chicago’s South Side to dedicate the Obama Presidential CenterSign up for the Breaking News US emailHe calls the situation a “win-win” for the US.Vance is here, and he starts by claiming that...

    Former presidents, heads of state and celebrities converged on a lakefront park in Chicago’s South Side to dedicate the Obama Presidential Center

    • Sign up for the Breaking News US email

    He calls the situation a “win-win” for the US.

    Vance is here, and he starts by claiming that Trump’s peace deal with Iran “is already bearing real fruits for the American people”, with 12.5m barrels going through the strait of Hormuz last night and gas prices dropping below $4 today for the first time since the conflict began.

    Continue reading...
    • The Obama Presidential Center will be dedicated Thursday. Here's what to expect NPR - Politics
    • The Obama Presidential Center will be dedicated Thursday. Here's what to expect NPR - Arts & Life
    • Star-studded ceremony welcomes Obama Presidential Center to Chicago – live The Guardian - US News
    • Star-studded ceremony welcomes Obama Presidential Center to Chicago – live The Guardian - US
  • Tech With Tim youtube.com channel programming tutorial video youtube 2026-06-17 13:00
    ↗

    Get started with Agentspan! https://agentspan.ai/?utm_campaign=YouTube-Tim&utm_source=Newsletter&utm_medium=email Most AI agent tutorials show you demos that fall apart the moment you try to run them in the real world. This full course is different — we'll build three agents...

    ▶ Watch on YouTube Opens in a new tab
    Get started with Agentspan! https://agentspan.ai/?utm_campaign=YouTube-Tim&utm_source=Newsletter&utm_medium=email Most AI agent tutorials show you demos that fall apart the moment you try to run them in the real world. This full course is different — we'll build three agents from scratch in Python, and every single one is designed to actually work in production. 🚀 Tools I Use Get 10% off with code techwithtim Openclaw setup: https://www.hostinger.com/techwithtim VPS setup: https://www.hostinger.com/techwithtim10 Wispr Flow (Best AI Dictation): https://ref.wisprflow.ai/TechWithTim-jun26 🎞 Video Resources 🎞 Finished Code (GitHub): https://github.com/techwithtim/Agentspan-Course Agentspan GitHub: https://github.com/agentspan-ai/agentspan/tree/main/deployment/docker-compose Agentspan Docs: https://agentspan.ai/docs/why-agentspan/ ⏳ Timestamps ⏳ 00:00:00 | Overview/Intro 00:01:00 | Problems with Running Agents 00:02:04 | What we Need for Production 00:02:45 | Agentspan Framework 00:04:50 | Agentspan Architecture 00:06:04 | Install/Setup 00:12:00 | Agent 1 - Memory & Basic Tools 00:28:36 | Agent 2 - RAG, Guardrails and HIML 00:57:53 | Agent 3 - Multi-Agent Orchestration 01:11:04 | Testing Agents 01:12:52 | Durable Execution 01:17:18 | Deplyment Overview Hashtags #Agentspan #Orkes #Python #AIAgents UAE Media License Number: 3635141
    • Adobe Says Its Expanded AI Agents Are There to 'Guide You Down the Happy Path' CNET News
    • AI Agents Today Aren't Secure. They're Just Clumsy DEV Community
    • Announcing ADK for Kotlin and ADK for Android 0.1.0: Building AI Agents on Android and Beyond Google Developers Blog
    • Orphaned AI Agents: How to Find Hidden Access Risks Inside Your Network The Hacker News
    • Announcing ADK for Kotlin and ADK for Android 0.1.0: Building AI Agents on Android and Beyond Google Developers Blog
    • Research Paper: AI Agents and the ReAct Pattern Gaurav Sen
    • AI Agents as "Games Masters"? 🎮🔥 Two Minute Papers
    • Canceling Subscriptions, Building Local AI Agents Tina Huang
    • AI Agents Fail Tina Huang
    • How Modern AI Agents Work Under the Hood Harkirat Singh
    • If You're Building AI Agents in 2026, Watch This ft. @oracledevs Harkirat Singh
    • connecting all scientific knowledge for ai agents??? Yacine Mahdid
    • 3 patterns to build long-running AI agents Google Cloud Tech
    • Building long-running AI agents with ADK Google Cloud Tech
    • How to build reliable software with AI agents Google Cloud Tech
    • Voice for AI Agents and Applications DeepLearningAI
    • Securing AI Agents: Risk, Governance, Recovery, and Anthropic’s Mythos with Arvind Nithrakashyap Open Data Science
    • Generative UI: When AI Agents Design the Interface with Maxime Beauchemin and Evan Rusackas Open Data Science
    • Why the Way You're Giving AI Agents Data Access Is Probably Wrong The Ravit Show
    • Will AI Agents Replace Jobs in 2026? The Invisible Shift in Work Intellipaat
    • The 3 Types of AI Agents Every Developer Should Know Real Python
    • This is why my AI Agents never guess JavaScript Mastery
  • Ebenezer Don youtube.com channel video web-development youtube 2026-06-13 14:55
    ↗

    Claude Mythos and Claude Fable 5 have been shut down by the US government. Here's why #ai #coding #programming

    ▶ Watch on YouTube Opens in a new tab
    Claude Mythos and Claude Fable 5 have been shut down by the US government. Here's why #ai #coding #programming
    • Coding with Fable 5 is actually insane. ForrestKnight
    • They Beat Fable 5? (WHAT) Codedamn
    • I Used Fable 5 (Mythos) For 48 Hours - Here's My Review Codedamn
    • Claude Fable 5 Suspension and Refunds Codevolution
    • How to Use Claude Fable 5 Codevolution
    • Building Tony Stark's 'Jarvis' with Claude Fable 5 DesignCourse
    • Claude Fable 5 UI/UX One-Shots - 5 Tests DesignCourse
    • Shocking Fable 5 Global Shutdown! #shorts KodeKloud
    • They Killed an AI Model Overnight (Fable 5 & Mythos 5) Traversy Media
    • They shut down Claude Fable 5. It's worse than it looks Ebenezer Don
    • Anthropic's best model ever... that you're not allowed to use: Fable 5 #ai #claude #chatgpt Ebenezer Don
    • Claude Fable 5 is here. Nobody can use it. Ebenezer Don
  • The Hacker News thehackernews.com cybersecurity security tech-news technology 2026-06-18 15:33
    ↗

    If an autonomous AI agent interacts with your company's core intellectual property today, can your security team instantly name the person who authorized it? For most enterprises, the answer is a simple no. The rush to adopt internal AI tools has left a massive trail of...

    If an autonomous AI agent interacts with your company's core intellectual property today, can your security team instantly name the person who authorized it? For most enterprises, the answer is a simple no. The rush to adopt internal AI tools has left a massive trail of administrative debt: orphaned agents (AI tools left running after their creator leaves the company) and standing privileges (
    • Adobe Says Its Expanded AI Agents Are There to 'Guide You Down the Happy Path' CNET News
    • AI Agents Today Aren't Secure. They're Just Clumsy DEV Community
    • Announcing ADK for Kotlin and ADK for Android 0.1.0: Building AI Agents on Android and Beyond Google Developers Blog
    • Announcing ADK for Kotlin and ADK for Android 0.1.0: Building AI Agents on Android and Beyond Google Developers Blog
    • Research Paper: AI Agents and the ReAct Pattern Gaurav Sen
    • AI Agents as "Games Masters"? 🎮🔥 Two Minute Papers
    • Canceling Subscriptions, Building Local AI Agents Tina Huang
    • AI Agents Fail Tina Huang
    • How Modern AI Agents Work Under the Hood Harkirat Singh
    • If You're Building AI Agents in 2026, Watch This ft. @oracledevs Harkirat Singh
    • connecting all scientific knowledge for ai agents??? Yacine Mahdid
    • 3 patterns to build long-running AI agents Google Cloud Tech
    • Building long-running AI agents with ADK Google Cloud Tech
    • How to build reliable software with AI agents Google Cloud Tech
    • Voice for AI Agents and Applications DeepLearningAI
    • Securing AI Agents: Risk, Governance, Recovery, and Anthropic’s Mythos with Arvind Nithrakashyap Open Data Science
    • Generative UI: When AI Agents Design the Interface with Maxime Beauchemin and Evan Rusackas Open Data Science
    • Why the Way You're Giving AI Agents Data Access Is Probably Wrong The Ravit Show
    • Will AI Agents Replace Jobs in 2026? The Invisible Shift in Work Intellipaat
    • The 3 Types of AI Agents Every Developer Should Know Real Python
    • Build 3 PRODUCTION AI Agents in Python - Full Course (Agentspan) Tech With Tim
    • This is why my AI Agents never guess JavaScript Mastery
  • The Guardian - US theguardian.com guardian headlines news us-news 2026-06-18 16:53
    ↗

    Donald Trump is claiming his Iran peace plan is a victory for Washington, despite the 14-point agreement revealing significant concessions to Tehran. Under the deal, Iran will reopen the strait of Hormuz in exchange for sanctions relief and the release of frozen assets, while...

    Donald Trump is claiming his Iran peace plan is a victory for Washington, despite the 14-point agreement revealing significant concessions to Tehran. Under the deal, Iran will reopen the strait of Hormuz in exchange for sanctions relief and the release of frozen assets, while talks will continue over the fate of Iran’s nuclear programme. Nosheen Iqbal speaks to the Guardian diplomatic editor, Patrick Wintour

    Continue reading...
    • The billionaire hidden behind the curtain inside Trump’s Pentagon The Guardian - US News
    • Trump’s Iran deal: the art of the fail? - The Latest The Guardian - US News
    • Fed governor Lisa Cook faced $1.3m in legal and security fees after Trump’s bid to fire her The Guardian - US News
    • Trump’s pitch to voters: “I love the inflation” Vox
    • You’re paying for Trump’s ballroom Vox
    • Senate Democrats Aren’t Happy About Trump’s Spy Law Ultimatum The Intercept
    • Trump’s Spaghetti-Against-the-Wall Indictment Against ICE Protesters — and How to Fight It The Intercept
  • GCFLearnFree.org youtube.com channel life-skills-and-job-searching video youtube 2026-06-09 10:15
    ↗

    What is the difference between open source and closed source software? In this beginner-friendly video, we explain how source code works, why some software is open for the public to view and modify, and why other software is kept private by its creators.⚙️ You’ll learn what...

    ▶ Watch on YouTube Opens in a new tab
    What is the difference between open source and closed source software? In this beginner-friendly video, we explain how source code works, why some software is open for the public to view and modify, and why other software is kept private by its creators.⚙️ You’ll learn what open source software means, how closed source software works, and see examples like LibreOffice, Linux, Firefox, WordPress, Microsoft Office and Windows. We also look at the advantages and disadvantages of each option, including cost, support, user-friendliness, stability, updates and public collaboration.🔒 This video is perfect for beginners who want to understand computer software, digital skills, coding basics, technology terms and how different types of software are created and shared.🔓🧑‍💻 Timestamp🕒 0:00 What is source code? 0:10 Open source vs closed source software 0:19 What is closed source software? 0:28 What is open source software? 0:37 Do you need coding skills to use open source software? 0:44 Common closed source and open source software examples 0:54 LibreOffice, Linux, Firefox and WordPress examples 1:12 Benefits of open source software 1:31 Downsides of open source software 1:47 Benefits of closed source software 1:57 Downsides of closed source software 2:08 Choosing the right software for your needs Learn more free digital and computer skills at https://www.learnfree.org/ We hope you enjoy!⚡ #opensource #software #digitalskills #computerskills #techforbeginners #codingbasics #learnfree #freelearning #technologyexplained
    • F5 Patches Two Critical NGINX Open Source Flaws Enabling Remote Code Execution The Hacker News
    • A Year Into Making LLMs, and now Topped Open Source SoTA?! bycloud
    • What is Clam AV (free & open source )? David Bombal
    • What is SNORT? Free open source IDS David Bombal
    • Open Source vs Enterprise Hadoop & Spark | Real Difference Explained | Tamil Data Engineering
    • Open Source Friday with Pomerium GitHub
    • Open Source vs Closed Source Software Explained Simply GCFLearnFree.org
    • After work Open Source chilling More live w/ René Rebe
    • Edit Videos by Editing Text | YusafCut Open Source Awais Mirza
    • Kimi K2.7: New King of Open Source AI? Codedamn
    • Skip Permissions. Run Claude, Codex, Open Source LLMs in the new Docker Sandboxes (sbx). CodingEntrepreneurs
  • Intellipaat youtube.com channel programming video youtube 2026-06-16 13:30
    ↗

    🔥Enroll for Artificial Intelligence Course: https://intellipaat.com/artificial-intelligence-deep-learning-course-with-tensorflow/ 🔥𝐁𝐨𝐨𝐤 𝐲𝐨𝐮𝐫 𝐅𝐫𝐞𝐞 𝐌𝐚𝐬𝐭𝐞𝐫𝐜𝐥𝐚𝐬𝐬: https://forms.gle/g5tExa7e54xpYZW97 AI is already transforming the workplace faster than most people realize. In this...

    ▶ Watch on YouTube Opens in a new tab
    🔥Enroll for Artificial Intelligence Course: https://intellipaat.com/artificial-intelligence-deep-learning-course-with-tensorflow/ 🔥𝐁𝐨𝐨𝐤 𝐲𝐨𝐮𝐫 𝐅𝐫𝐞𝐞 𝐌𝐚𝐬𝐭𝐞𝐫𝐜𝐥𝐚𝐬𝐬: https://forms.gle/g5tExa7e54xpYZW97 AI is already transforming the workplace faster than most people realize. In this video, we explore how AI agents are quietly taking over repetitive tasks, reducing the need for large teams, and reshaping entire industries without obvious disruption. While many people think AI will “suddenly replace jobs,” the reality is more subtle—jobs are not disappearing overnight, but individual tasks are being automated step by step. This shift is happening inside companies right now, often without headlines or public awareness. You’ll learn: ✅ What AI agents are and how they differ from simple chatbots ✅ Why companies are hiring fewer people instead of firing large teams ✅ Which types of jobs and tasks are most at risk from AI automation ✅ The skills that AI still cannot easily replace ✅ How to use AI tools to increase your productivity and career value The biggest shift is not humans vs AI—it’s humans who use AI vs those who don’t. People who learn to leverage AI effectively will become significantly more productive and valuable in the workplace. Instead of fearing AI, the smarter approach is learning how to work with it, automate tasks, and focus on skills like creativity, communication, and decision-making. 📖 Below are the Topics covered in this Video: 00:00 — The Invisible AI Shift Already Happening 00:30 — What AI Agents Really Are 01:10 — AI Agents vs Chatbots Explained 01:45 — How AI Starts Replacing Real Work 02:25 — Why Jobs Are Disappearing Slowly (Not Overnight) 03:05 — Which Jobs Are Most at Risk 03:35 — The One Skill AI Can’t Replace 04:05 — Humans Using AI vs Humans Without AI 04:35 — How to Adapt and Stay Relevant 05:05 — Conclusion #ai #aiagents #futureofwork #artificialintelligence #aijobs #automation ➡️ About the Course: The Artificial Intelligence Course by Intellipaat is designed to help learners master AI, Deep Learning, Generative AI, TensorFlow, CNN, RNN, NLP, and advanced neural network concepts through live sessions, hands-on projects, and industry-focused training. The program includes mentorship from IIT faculty and industry experts from companies like Microsoft and Google, along with practical exposure to real-world AI applications such as image recognition, chatbot development, recommender systems, and object detection. The course also provides Microsoft certification, project-based learning, career guidance, and placement assistance to help students build a strong career in Artificial Intelligence and Machine Learning. ➡️ Key Features of the Course: ✅ Learn from IIT faculty and industry experts from companies like Microsoft and Google ✅ 45+ live instructor-led sessions with 210+ hours of self-paced learning ✅ Hands-on training in Deep Learning, Generative AI, TensorFlow, CNN, RNN, NLP, LangChain, and Computer Vision ✅ Work on 10+ real-world AI projects and industry case studies ✅ Microsoft certification upon course completion ✅ 1:1 mentorship sessions, resume building, and LinkedIn profile review ✅ Dedicated placement assistance with mock interviews and career guidance ✅ 24/7 learner support and access to recorded sessions 📌 Do subscribe to Intellipaat channel & come across more relevant Tech content: https://goo.gl/hhsGWb ▶️ Intellipaat Achievers Channel: https://www.youtube.com/@intellipaatachievers 📚For more information, please write back to us at sales@intellipaat.com or call us at IND: +91-7022374614 / US : 1-800-216-8930
    • Adobe Says Its Expanded AI Agents Are There to 'Guide You Down the Happy Path' CNET News
    • AI Agents Today Aren't Secure. They're Just Clumsy DEV Community
    • Announcing ADK for Kotlin and ADK for Android 0.1.0: Building AI Agents on Android and Beyond Google Developers Blog
    • Orphaned AI Agents: How to Find Hidden Access Risks Inside Your Network The Hacker News
    • Announcing ADK for Kotlin and ADK for Android 0.1.0: Building AI Agents on Android and Beyond Google Developers Blog
    • Research Paper: AI Agents and the ReAct Pattern Gaurav Sen
    • AI Agents as "Games Masters"? 🎮🔥 Two Minute Papers
    • Canceling Subscriptions, Building Local AI Agents Tina Huang
    • AI Agents Fail Tina Huang
    • How Modern AI Agents Work Under the Hood Harkirat Singh
    • If You're Building AI Agents in 2026, Watch This ft. @oracledevs Harkirat Singh
    • connecting all scientific knowledge for ai agents??? Yacine Mahdid
    • 3 patterns to build long-running AI agents Google Cloud Tech
    • Building long-running AI agents with ADK Google Cloud Tech
    • How to build reliable software with AI agents Google Cloud Tech
    • Voice for AI Agents and Applications DeepLearningAI
    • Securing AI Agents: Risk, Governance, Recovery, and Anthropic’s Mythos with Arvind Nithrakashyap Open Data Science
    • Generative UI: When AI Agents Design the Interface with Maxime Beauchemin and Evan Rusackas Open Data Science
    • Why the Way You're Giving AI Agents Data Access Is Probably Wrong The Ravit Show
    • The 3 Types of AI Agents Every Developer Should Know Real Python
    • Build 3 PRODUCTION AI Agents in Python - Full Course (Agentspan) Tech With Tim
    • This is why my AI Agents never guess JavaScript Mastery
  • How to Get an Analytics Job youtube.com channel data-science video youtube 2026-06-14 17:56
    ↗

    As you use ChatGPT, it starts to remember details like your birthday or job. It gets to know you better over time, personalizing its responses. #ChatGPT #AI #MachineLearning #PromptEngineering

    ▶ Watch on YouTube Opens in a new tab
    As you use ChatGPT, it starts to remember details like your birthday or job. It gets to know you better over time, personalizing its responses. #ChatGPT #AI #MachineLearning #PromptEngineering
    • Everything you need to know about the ABC Classic 100: Greatest of All Time ABC News (Australia)
    • Need to Scan Important Documents? Use Your iPhone's Hidden Scanner CNET News
    • There’s no need to include ‘navigation’ in your navigation labels CSS-Tricks
    • Celeste Fans Need To Check Out This New Platformer ASAP Kotaku
    • What You Need to Know About How Tear Gas Harms Kids ProPublica
    • Why you need to try the GitHub Copilot desktop app GitHub
    • What Enterprise Leaders Need to Know About Hybrid Data and AI The Ravit Show
    • Claude 4.8 - Three Things You Need To See Tyler Moore
    • Spring Security 7 Crash Course [2026] – Everything You Need to Know Amigoscode
    • You're writing twice as much CSS as you need to Kevin Powell
  • Tyler Moore youtube.com channel retired video youtube 2026-05-29 22:50
    ↗

    Tyler and Enmanuel dig into what's new with Claude Opus 4.8. We put the latest features through their paces, including the new workflow capabilities, and build a few exciting things along the way to show what's actually possible now. If you're into web design, AI tools, or...

    ▶ Watch on YouTube Opens in a new tab
    Tyler and Enmanuel dig into what's new with Claude Opus 4.8. We put the latest features through their paces, including the new workflow capabilities, and build a few exciting things along the way to show what's actually possible now. If you're into web design, AI tools, or just want to see how this stuff holds up in real projects, this one's for you. Hostinger: https://hostinger.com/unlock Enmanuel’s Website: https://icreateyoursite.com/ #ClaudeAI #WebDesign #AITools
    • Everything you need to know about the ABC Classic 100: Greatest of All Time ABC News (Australia)
    • Need to Scan Important Documents? Use Your iPhone's Hidden Scanner CNET News
    • There’s no need to include ‘navigation’ in your navigation labels CSS-Tricks
    • Celeste Fans Need To Check Out This New Platformer ASAP Kotaku
    • What You Need to Know About How Tear Gas Harms Kids ProPublica
    • Microsoft 365 Security: Features You NEED to Know! #shorts How to Get an Analytics Job
    • Why you need to try the GitHub Copilot desktop app GitHub
    • What Enterprise Leaders Need to Know About Hybrid Data and AI The Ravit Show
    • Spring Security 7 Crash Course [2026] – Everything You Need to Know Amigoscode
    • You're writing twice as much CSS as you need to Kevin Powell
  • Ebenezer Don youtube.com channel video web-development youtube 2026-06-10 08:11
    ↗

    Anthropic just shipped the most powerful model they've ever released to the public: Claude Fable 5. A Mtyhos-level model. It broke coding benchmarks (around 80% on SWE-Bench Pro vs GPT-5.5's 58), and did a 50-million-line code migration in a single day. But there's a catch:...

    ▶ Watch on YouTube Opens in a new tab
    Anthropic just shipped the most powerful model they've ever released to the public: Claude Fable 5. A Mtyhos-level model. It broke coding benchmarks (around 80% on SWE-Bench Pro vs GPT-5.5's 58), and did a 50-million-line code migration in a single day. But there's a catch: Fable 5 is really their secret "Mythos" model with a leash on it, and the most jaw-dropping numbers you've seen belong to a version you can't actually buy. In this video I break down what Fable 5 really is, the benchmarks vs GPT-5.5, Opus 4.8 and Gemini 3.1, the safety filters that are blocking doctors and security engineers, the price, and why "the model you read about isn't the model you can use." 📘 Want to actually understand how models like this work and how to build with them? Get my book, Get Insanely Good at AI: https://getaibook.com 💬 What's your read: responsible release, or warning-while-selling? Drop a comment. 👍 Like and subscribe for more AI engineering breakdowns. #ClaudeFable5 #Anthropic #AInews #Claude #AIengineering
    • Coding with Fable 5 is actually insane. ForrestKnight
    • They Beat Fable 5? (WHAT) Codedamn
    • I Used Fable 5 (Mythos) For 48 Hours - Here's My Review Codedamn
    • Claude Fable 5 Suspension and Refunds Codevolution
    • How to Use Claude Fable 5 Codevolution
    • Building Tony Stark's 'Jarvis' with Claude Fable 5 DesignCourse
    • Claude Fable 5 UI/UX One-Shots - 5 Tests DesignCourse
    • Shocking Fable 5 Global Shutdown! #shorts KodeKloud
    • They Killed an AI Model Overnight (Fable 5 & Mythos 5) Traversy Media
    • BREAKING: The US government just took down Claude Fable 5 and it's worse than it looks Ebenezer Don
    • They shut down Claude Fable 5. It's worse than it looks Ebenezer Don
    • Anthropic's best model ever... that you're not allowed to use: Fable 5 #ai #claude #chatgpt Ebenezer Don
  • DeepLearningAI youtube.com channel pobcasts video youtube 2026-06-17 15:00
    ↗

    Learn more: https://bit.ly/4vPQ3HE Voice is one of the most natural human interfaces, but adding it to AI applications has historically forced a tradeoff: fast voice-to-voice models that sacrifice reliability, or accurate speech-to-text-to-LLM-to-speech pipelines that add...

    ▶ Watch on YouTube Opens in a new tab
    Learn more: https://bit.ly/4vPQ3HE Voice is one of the most natural human interfaces, but adding it to AI applications has historically forced a tradeoff: fast voice-to-voice models that sacrifice reliability, or accurate speech-to-text-to-LLM-to-speech pipelines that add latency. This course teaches you how to get both, using Vocal Bridge's architecture that pairs a real-time foreground agent with a reasoning background agent. Taught by Ashwyn Sharma, CEO and Co-Founder of Vocal Bridge (an AI Fund portfolio company), this course covers three practical integration patterns that meet you where you are: voice embedded in an application, voice layered onto an existing agent without touching its logic, and voice as a tool your LLM can call when it decides a conversation is the right modality. In detail, you'll survey the traditional voice stack and its tradeoffs, then explore three live integration patterns to understand when each one applies. Build a voice-interactive tic-tac-toe game where voice commands and mouse clicks work together over a single synchronized channel, then add a voice layer to an existing agent with minimal code, leaving your prompts, RAG pipeline, and tools untouched. Give your agent a make_phone_call tool so it can dial a real number, hold a conversation with a demo agent, and stream the transcript back live. Set up evaluation-driven development using Vocal Bridge's multimodal evaluator to score calls, catch regressions, and refine prompts before issues reach users. Hear from Scott Johnston, former CEO of Docker and Vocal Bridge board member, on what it actually takes to move voice agents from demos to production. By the end of this course, you’ll have implemented three hands-on voice AI patterns: adding voice to an interactive app, layering voice onto a text-based agent, and giving an agent the ability to place outbound calls. You’ll also know how to evaluate and improve voice interactions. Enroll here: https://bit.ly/4vPQ3HE
    • Adobe Says Its Expanded AI Agents Are There to 'Guide You Down the Happy Path' CNET News
    • AI Agents Today Aren't Secure. They're Just Clumsy DEV Community
    • Announcing ADK for Kotlin and ADK for Android 0.1.0: Building AI Agents on Android and Beyond Google Developers Blog
    • Orphaned AI Agents: How to Find Hidden Access Risks Inside Your Network The Hacker News
    • Announcing ADK for Kotlin and ADK for Android 0.1.0: Building AI Agents on Android and Beyond Google Developers Blog
    • Research Paper: AI Agents and the ReAct Pattern Gaurav Sen
    • AI Agents as "Games Masters"? 🎮🔥 Two Minute Papers
    • Canceling Subscriptions, Building Local AI Agents Tina Huang
    • AI Agents Fail Tina Huang
    • How Modern AI Agents Work Under the Hood Harkirat Singh
    • If You're Building AI Agents in 2026, Watch This ft. @oracledevs Harkirat Singh
    • connecting all scientific knowledge for ai agents??? Yacine Mahdid
    • 3 patterns to build long-running AI agents Google Cloud Tech
    • Building long-running AI agents with ADK Google Cloud Tech
    • How to build reliable software with AI agents Google Cloud Tech
    • Securing AI Agents: Risk, Governance, Recovery, and Anthropic’s Mythos with Arvind Nithrakashyap Open Data Science
    • Generative UI: When AI Agents Design the Interface with Maxime Beauchemin and Evan Rusackas Open Data Science
    • Why the Way You're Giving AI Agents Data Access Is Probably Wrong The Ravit Show
    • Will AI Agents Replace Jobs in 2026? The Invisible Shift in Work Intellipaat
    • The 3 Types of AI Agents Every Developer Should Know Real Python
    • Build 3 PRODUCTION AI Agents in Python - Full Course (Agentspan) Tech With Tim
    • This is why my AI Agents never guess JavaScript Mastery
  • Yacine Mahdid youtube.com channel machine-learning video youtube 2026-06-15 14:00
    ↗

    actually I love this idea, would make it very easy for ai agents to know how to build better experiments.

    ▶ Watch on YouTube Opens in a new tab
    actually I love this idea, would make it very easy for ai agents to know how to build better experiments.
    • Adobe Says Its Expanded AI Agents Are There to 'Guide You Down the Happy Path' CNET News
    • AI Agents Today Aren't Secure. They're Just Clumsy DEV Community
    • Announcing ADK for Kotlin and ADK for Android 0.1.0: Building AI Agents on Android and Beyond Google Developers Blog
    • Orphaned AI Agents: How to Find Hidden Access Risks Inside Your Network The Hacker News
    • Announcing ADK for Kotlin and ADK for Android 0.1.0: Building AI Agents on Android and Beyond Google Developers Blog
    • Research Paper: AI Agents and the ReAct Pattern Gaurav Sen
    • AI Agents as "Games Masters"? 🎮🔥 Two Minute Papers
    • Canceling Subscriptions, Building Local AI Agents Tina Huang
    • AI Agents Fail Tina Huang
    • How Modern AI Agents Work Under the Hood Harkirat Singh
    • If You're Building AI Agents in 2026, Watch This ft. @oracledevs Harkirat Singh
    • 3 patterns to build long-running AI agents Google Cloud Tech
    • Building long-running AI agents with ADK Google Cloud Tech
    • How to build reliable software with AI agents Google Cloud Tech
    • Voice for AI Agents and Applications DeepLearningAI
    • Securing AI Agents: Risk, Governance, Recovery, and Anthropic’s Mythos with Arvind Nithrakashyap Open Data Science
    • Generative UI: When AI Agents Design the Interface with Maxime Beauchemin and Evan Rusackas Open Data Science
    • Why the Way You're Giving AI Agents Data Access Is Probably Wrong The Ravit Show
    • Will AI Agents Replace Jobs in 2026? The Invisible Shift in Work Intellipaat
    • The 3 Types of AI Agents Every Developer Should Know Real Python
    • Build 3 PRODUCTION AI Agents in Python - Full Course (Agentspan) Tech With Tim
    • This is why my AI Agents never guess JavaScript Mastery
  • Kevin Naughton Jr. youtube.com channel competitive-programming-and-interview-preparation software-engineers video youtube 2026-05-28 16:15
    ↗

    Ferryman has hit $1,000 MRR! I'm documenting building Ferryman.io to be a 10k+ MRR SaaS product. I'm capturing everything I'm doing to build, market, and grow the product from the very beginning and I hope you'll follow along with the journey. My goal is to one day be able to...

    ▶ Watch on YouTube Opens in a new tab
    Ferryman has hit $1,000 MRR! I'm documenting building Ferryman.io to be a 10k+ MRR SaaS product. I'm capturing everything I'm doing to build, market, and grow the product from the very beginning and I hope you'll follow along with the journey. My goal is to one day be able to look back and see what I did to build the product to $10k+ MRR and I hope documenting this process can help others. If you're thinking of building something, just start! Starting is the most difficult part, but you'll figure it out as you go so start now! Try Ferryman: https://ferryman.io Try Linear (6 months free): https://linear.app/partners/knj
    • How I Built a Python & Selenium Automation Bot for Real-World Workflow Automation DEV Community
    • I Built an AI That Wrote Me a Country Breakup Song Siraj Raval
    • Replit is Creating a New Generation of Builders - See How I Built a Full App in Minutes Gary Explains
    • I broke my Mic... So I Built One!! #diy #electronics #microphone #engineering #circuit #amplifier GreatScott!
    • Meeting pods are a ripoff, so I built my own. Buy or DIY? Linus Tech Tips
    • I built a mini Claude Code (Why you should too) Codedamn
    • I Built an AI Agent That Fixes My Resume Codevolution
    • I Built a WordPress Website in 2026 Using Claude Design & Elementor Darrel Wilson
    • I Built the Most Advanced Elementor Templates Ever Made Darrel Wilson
  • Gary Explains youtube.com channel computer-sciences video youtube 2026-05-22 07:26
    ↗

    A few years ago, turning an idea, a passion of yours, into a website was a complex thing to do. You needed backend code, frontend code, databases, authentication, deployment. But today, things are different. Today, we have Replit, where your creativity can run without limits....

    ▶ Watch on YouTube Opens in a new tab
    A few years ago, turning an idea, a passion of yours, into a website was a complex thing to do. You needed backend code, frontend code, databases, authentication, deployment. But today, things are different. Today, we have Replit, where your creativity can run without limits. --- Get $10 worth of FREE credits: https://replit.com/refer/garysimsaa?trackingContext=universal-settings-modal #garyexplains
    • How I Built a Python & Selenium Automation Bot for Real-World Workflow Automation DEV Community
    • How I built a $1,000/mo SaaS in 100 Days Kevin Naughton Jr.
    • I Built an AI That Wrote Me a Country Breakup Song Siraj Raval
    • I broke my Mic... So I Built One!! #diy #electronics #microphone #engineering #circuit #amplifier GreatScott!
    • Meeting pods are a ripoff, so I built my own. Buy or DIY? Linus Tech Tips
    • I built a mini Claude Code (Why you should too) Codedamn
    • I Built an AI Agent That Fixes My Resume Codevolution
    • I Built a WordPress Website in 2026 Using Claude Design & Elementor Darrel Wilson
    • I Built the Most Advanced Elementor Templates Ever Made Darrel Wilson
  • Hitesh Choudhary youtube.com channel tutorial video youtube 2026-06-06 10:57
    ↗

    Checkout https://inapp.app/hitesh/insforge as a resource used in this video. We have built https://agenticoverflow.ai/ in this video. Here is an interesting experiment, I tried to build an entire startup, the modern age, agent first AgenticOverflow (yes, inspired by Stack...

    ▶ Watch on YouTube Opens in a new tab
    Checkout https://inapp.app/hitesh/insforge as a resource used in this video. We have built https://agenticoverflow.ai/ in this video. Here is an interesting experiment, I tried to build an entire startup, the modern age, agent first AgenticOverflow (yes, inspired by Stack Overflow) and asked Opus 4.8 to build it for me with Agent First backend, InsForge. You can see the whole journey and result in this video. Welcome to a youtube channel dedicated to programming and coding related tutorials. We talk about tech, write code, discuss about cloud and devops. That’s what we do all day, all year. Get all source code for react application: https://github.com/hiteshchoudhary/react-english All source code is available at my Github account: https://github.com/hiteshchoudhary Our Open-Source Project is here: https://freeapi.app Join me at whatsapp: https://hitesh.ai/whatsapp for community discord: https://hitesh.ai/discord Instagram pe yaha paaye jaate h: https://www.instagram.com/hiteshchoudharyofficial/ Learn React with 10 projects: https://www.youtube.com/watch?v=eCU7FfMl5WU&list=PLRAV69dS1uWQos1M1xP6LWN6C-lZvpkmq Learn Docker: https://youtu.be/rr9cI4u1_88?si=fSK00PNOt0gqBXp6 Learn Kubernetes: https://www.youtube.com/watch?v=7XDeI5fyj3w How does a browser works: https://youtu.be/5rLFYtXHo9s?si=UW1HrwGUzkk4E7qh How nodejs works: https://youtu.be/ooBxSg1Cl1w?si=Ks6Wih1smJZSDz4V Learn Redux-toolkit: https://www.youtube.com/watch?v=pX0SBJF01EU Learn NextJS: https://www.youtube.com/watch?v=iPGXk-i-VYU&list=PLRAV69dS1uWR7KF-zV6YPYtKYEHENETyE Learn Typescript: https://www.youtube.com/watch?v=j89BvWz8Eag&list=PLRAV69dS1uWRPSfKzwZsIm-Axxq-LxqhW Learn Javascript: https://www.youtube.com/watch?v=2md4HQNRqJA&list=PLRAV69dS1uWSxUIk5o3vQY2-_VKsOpXLD Learn React Native: https://www.youtube.com/watch?v=kGtEax1WQFg&list=PLRAV69dS1uWSjBBJ-egNNOd4mdblt1P4c Learn Zustand: https://www.youtube.com/watch?v=KCr-UNsM3vA&list=PLRAV69dS1uWQMXekDgw7fRAsHmsbKWkwu Learn Golang: https://www.youtube.com/watch?v=X4q1OM0voO0&list=PLRAV69dS1uWSR89FRQGZ6q9BR2b44Tr9N
    • The Obama Presidential Center will be dedicated Thursday. Here's what to expect NPR - Politics
    • The Obama Presidential Center will be dedicated Thursday. Here's what to expect NPR - Arts & Life
    • Something is jamming GPS over Europe. Here's what we found Veritasium
    • I wasted my 20s...Here's What I WISH I Knew | Stoic Philosophy PB Coding
    • AI Interviewed a Junior Java Dev... Here's What Happened Amigoscode
  • Traversy Media youtube.com channel tutorial video youtube 2026-06-13 18:45
    ↗

    This is not about Anthropic. We don't want this to be the new bar. The government being able to just pull something away from millions of people with no explanation.

    ▶ Watch on YouTube Opens in a new tab
    This is not about Anthropic. We don't want this to be the new bar. The government being able to just pull something away from millions of people with no explanation.
    • Allbirds Used to Make Viral Wool Sneakers. Now It’s an AI Company Called ‘Smartbird.’ Entrepreneur.com
    • DeepInflation: an AI agent for research and model discovery of inflation arXiv - hep-th
    • I Hacked an AI Customer Service Agent in 8 Seconds Siraj Raval
    • I Built an AI That Wrote Me a Country Breakup Song Siraj Raval
    • I Quit Chrome for an AI Browser. It Actually Worked. Siraj Raval
    • Building an AI Interviewer From Scratch in 3 Hours Harkirat Singh
    • How an AI Agent Deleted PocketOS Production in 9 Seconds Kent C. Dodds
    • How to build an AI Agent and MCP Server (step-by-step) Google Cloud Tech
    • How to Add an AI Chatbot to Your Client's Website Code with Ania Kubów #JavaScriptGames
    • I Built an AI Agent That Fixes My Resume Codevolution
    • What Is an AI Agent? LLMs, Tools, and a Loop Real Python
    • How to Become an AI Engineer in 2026 Tech With Tim
  • arXiv - Computer Science: Artificial Intelligence arxiv.org ai arxiv computer-science preprint research science 2026-06-18 04:00
    ↗

    arXiv:2606.07591v3 Announce Type: replace-cross Abstract: AI coding agents are increasingly used for scientific work, but their end-to-end autonomous research capability remains difficult to verify. We present ResearchClawBench, a benchmark for evaluating autonomous...

    arXiv:2606.07591v3 Announce Type: replace-cross Abstract: AI coding agents are increasingly used for scientific work, but their end-to-end autonomous research capability remains difficult to verify. We present ResearchClawBench, a benchmark for evaluating autonomous scientific research across 40 tasks from 10 scientific domains. Each task is grounded in a real published paper, provides related literature and raw data, and hides the target paper during evaluation. Expert-curated multimodal rubrics decompose the target scientific artifacts into weighted criteria, enabling evaluation of target-paper-level re-discovery while leaving room for new discovery. We evaluate seven autonomous research (auto-research) agents under a unified protocol and seventeen native LLMs through the lightweight ResearchHarness. Current systems remain far from reliable re-discovery: the strongest autonomous agent, Claude Code, averages 21.5, and the strongest ResearchHarness LLM, Claude-Opus-4.7, averages 20.7, with an LLM frontier mean of only 26.5. Error analysis shows that failures concentrate in experimental protocol mismatch, evidence mismatch, and missing scientific core. ResearchClawBench provides a reproducible evaluation frontier for measuring progress toward autonomous scientific research.
    • ResearchClawBench: A Benchmark for End-to-End Autonomous Scientific Research arXiv - cs.CL
    • Notation Matters: A Benchmark Study of Token-Optimized Formats in Agentic AI Systems arXiv - cs.CL
    • ResearchClawBench: A Benchmark for End-to-End Autonomous Scientific Research arXiv - cs.AI
  • GitHub Blog github.blog developer github technology 2026-06-15 20:15
    ↗

    GitHub Copilot CLI for Beginners: Learn how to use slash commands to control your terminal AI agent. The post GitHub Copilot CLI for Beginners: Overview of common slash commands appeared first on The GitHub Blog.

    Welcome back to GitHub Copilot CLI for Beginners! In this series (available in video and blog format), we’ll give you everything you need to get started using GitHub Copilot CLI. So far in this series, we’ve covered how to get started and when to use interactive and non-interactive modes. In this edition, we’ll learn what slash commands are, why they matter, and how to use slash commands to control GitHub Copilot efficiently. You can complete tasks like switching models, checking token usage, and resuming past sessions right from your terminal.

    Let’s dive in!

    Understanding slash commands in GitHub Copilot CLI

    When working in Copilot CLI, one of the most powerful concepts to learn early on is slash commands. Slash commands are built-in controls that you can access directly from the command line. Acting as your control surface within Copilot CLI, slash commands allow you to:

    • Guide Copilot’s behavior
    • Inspect changes
    • Manage context
    • Move efficiently across sessions and projects
    • Keep permissions tidy

    Slash commands can be thought of as your command center for interacting with Copilot CLI. To look at all of the options available, just type / in the command line for a scrollable list of all currently supported slash commands.

    Let’s take a look at some of the most popular ones.

    Choosing the right model

    Different models are optimized for different kinds of work. If you want to switch models, type /model into the command line. This will display a list of available models, along with key details like:

    • Capabilities: Some are better for quick, lightweight tasks like refactoring, while others more efficiently handle deeper reasoning such as feature planning.
    • Availability: The list may vary depending on your plan or organization’s settings.
    • Cost: Numbers shown on the right of each model indicate cost multiplier, helping you choose the right balance between performance and usage in relation to your plan.

    Choosing the right model can significantly impact both speed and results.

    Managing context and token usage

    Copilot CLI operates within a context window, which determines how much information it can “remember” during a session. If you want to check your current usage, type /context to learn how many tokens you have left, along with system usage and available buffer.

    If you find that you’re running low on space, you can free up space by typing /compact in the command line. This summarizes your current conversation so you can continue without having to start a new session. Copilot CLI will do this automatically when you approach the limit, but you can also do this manually if you want to transition to a new task or clean up context mid-session.

    If you’d rather start fresh and completely reset your environment, you can use /clear to clear the session entirely.

    Working across sessions

    If you want to resume a previous session, you can type /resume. This will bring up a list of previous sessions you’ve had, including both local and remote sessions. Entering a previous session will show you your session history, and you can pick up right where you left off.

    Inspecting changes

    As you work with Copilot to make changes to your project, it’s important to keep track of what’s changed. If you want to see what the changes are, run /diff to see recent updates. This gives you a clear view of what modifications were made during your session, so you can validate changes before moving forward.

    Navigating projects and directories

    If you want to work across repositories or directories, you don’t have to exit Copilot. You can type /cwd to change your working directory to another repository. This allows you to scope Copilot’s work to a specific part of your project and helps you stay efficient while multitasking across codebases.

    Managing tool permissions

    In the past, you might have granted Copilot CLI permission to perform actions like editing files. Say you’re switching to a repository you want to be more careful in and want to reset those permissions: you can do so by running /reset-allowed-tools.

    Take this with you

    Using these slash commands gives you even better control over Copilot CLI—and the more familiar you become with them, the more deliberate your workflow becomes.

    Whether you’re switching models, managing context, or navigating across projects, using slash commands in CLI gives you the tools you need to stay in control. And if you haven’t already: open up your terminal, type /, and explore! There are many more slash commands to discover.

    Happy coding!

    Looking to try GitHub Copilot CLI? Read the docs and get started today.

    More resources to explore:

    • GitHub Copilot CLI for Beginners video series
    • GitHub Copilot CLI for Beginners: Getting started with GitHub Copilot CLI
    • GitHub Copilot CLI for Beginners: Interactive v. non-interactive mode
    • GitHub Copilot CLI 101: How to use GitHub Copilot from the command line
    • Best practices for GitHub Copilot CLI

    The post GitHub Copilot CLI for Beginners: Overview of common slash commands appeared first on The GitHub Blog.

    • How we made GitHub Copilot CLI more selective about delegation GitHub Blog
    • Give GitHub Copilot CLI real code intelligence with language servers GitHub Blog
    • From one-off prompts to workflows: How to use custom agents in GitHub Copilot CLI GitHub Blog
    • Introducing Copilot CLI and agentic features in JetBrains IDEs GitHub
    • Copilot CLI Tutorial #11 - Delegating Tasks to the Cloud The Net Ninja
    • Copilot CLI Tutorial #10 - Code Review Agent The Net Ninja
    • Copilot CLI Tutorial #9 - Custom Agents The Net Ninja
    • Copilot CLI Tutorial #8 - MCP Servers The Net Ninja
    • Copilot CLI Tutorial #7 - Skills The Net Ninja
    • Copilot CLI Tutorial #6 - Plan Mode The Net Ninja
    • Copilot CLI Tutorial #5 - Context Management The Net Ninja
  • GitHub Blog github.blog developer github technology 2026-06-12 22:26
    ↗

    Better orchestration, fewer handoffs, faster progress, without a single new knob. The post How we made GitHub Copilot CLI more selective about delegation appeared first on The GitHub Blog.

    In agentic systems, more delegation isn’t always better. Imagine asking Copilot CLI to make a simple change. Instead of handling it directly, it spins up a helper agent that searches the repository, waits on a result, and stalls. Work that should have taken one step now takes three. While some tasks genuinely benefit from a specialist subagent—like exploring an unfamiliar repository, checking an independent area of the code, or running a long command while the main agent keeps moving—delegation isn’t free. Every handoff adds coordination overhead, tool calls, and wait time. If an agent delegates too eagerly, the “help” can become friction.  

    We recently released an improvement to our agentic harness called smarter subagent delegation. This makes Copilot CLI more selective by helping the main agent:  

    • Stay focused when it can move faster on its own.
    • Delegate when a specialist creates real leverage.
    • Parallelize work when tasks are truly independent.

    Smarter subagent delegation has now rolled out to 100% of Copilot CLI production traffic. If you want to get started today, simply update GitHub Copilot CLI by running the /update command in your terminal to version 1.0.42 or later. 

    In a production A/B test, this improvement reduced tool failures per session by 23%, including a 27% reduction in search tool failures and an 18% reduction in edit tool failures. It also improved total user wait time by 5% at P95 and 3% at P75, with no quality regression. Here, P95 captures wait time near the slowest 5% of sessions, while P75 reflects wait time toward the slower end of typical sessions. This means fewer unnecessary handoffs, fewer repeated searches, fewer failure-prone tool paths, and less waiting during long-running coding tasks. 

    In this post, we’ll walk through how we identified unnecessary delegation in Copilot CLI, what we changed to make delegation more selective, and how we validated those changes through offline evaluation and production A/B testing. We’ll also show why those changes led to fewer failures and less waiting—and what that looks like for developers using Copilot CLI day to day. 

    The problem: Delegation is powerful, but not free

    Subagents are one of the most important capabilities in an agentic CLI. They let Copilot break down complex work, run investigations in parallel, and keep the main agent focused on coordinating the final answer. For large codebases and multi-step engineering tasks, that can be the difference between a slow linear workflow and an efficient parallel one. 

    But delegation introduces its own failure modes: 

    • Unnecessary handoffs for simple tasks that the main agent could complete faster on its own. 
    • Overuse of exploration subagents when the handoff already contains enough context.
    • Repeated or overlapping searches across the main agent and subagents. 
    • Sequential delegation, where the main agent waits for a subagent instead of treating delegation as an opportunity for parallel work. 
    • Failure-prone subagent paths, including stale file paths, moved files, incorrect relative paths, and workspace mismatches.  
    Animated Copilot CLI session showing unnecessary subagent delegation. The main agent idles while multiple subagents repeat searches, use stale or ambiguous file paths, and accumulate tool failures, increasing from 0 to 5.
    Figure 1. Example: tool call failure by subagents while main agent is idling. 

    Our goal: help developers use subagents when they create leverage, avoid them when they add overhead, and parallelize work when the task genuinely benefits from independent execution. 

    From problem signals to shipped improvement

    The way we identified the problem became the way we solved it. Instead of treating agent trajectory analysis, product changes, evaluation, and rollout as separate activities, we used them as one feedback loop: observe the agent behavior, isolate the orchestration bottleneck, make a targeted change, validate it offline, measure it online, and ship only once the end-to-end workflow improved. 

    Flow diagram of the smarter subagent delegation improvement loop: analyze initial signals from telemetry, A/B experiments, human side-by-side reviews, and agent comparison evals; create offline evals; make a product change; validate offline and online; then release when results are good. Dashed arrows show feedback loops for bad changes and online disagreements.
    Figure 2. The end-to-end improvement loop: analyze, change, validate, and ship.

    1. Analyze: Let LLMs identify the delegation bottleneck

    Instead of manually reviewing agent sessions, we used LLMs to analyze full trajectories and identify where orchestration was helping versus where it was adding overhead. That analysis surfaced a consistent pattern: subagents were sometimes being invoked for tasks that were already narrow, obvious, or fully described in the handoff. 

    In those cases, the subagent could spend time re-searching the repository even though the main agent already had enough context to act directly. That clarified the improvement target: keep simple discovery-and-edit tasks in the main agent, and reserve subagents for work that is broader, cross-cutting, or naturally parallelizable. 

    2. Change: Refine the orchestration policy

    After identifying the bottleneck, we used LLMs to help translate that diagnosis into a more selective orchestration policy.

    Copilot CLI should handle focused work directly: find a file, read it, make a targeted change, and verify it. Delegation is more useful when the work requires independent context, broad exploration, or parallel execution.

    In practice, that means starting with the narrowest effective path, escalating when complexity or uncertainty creates value, and stepping back down when the task becomes focused again. Subagents should be treated as a parallelism tool, not a pause button. When Copilot launches a subagent, the main agent should continue making progress on independent work rather than simply waiting for the result.

    When a subagent is used, the handoff should also be specific: what the user asked, what is already known, what the subagent owns, and what kind of result the main agent needs back. 

    3. Validate: Test offline, confirm online, then ship

    Before broad rollout, we validated the change with automatically generated regression cases and existing benchmarks. This helped confirm that the new delegation guidance reduced avoidable overhead without breaking cases where subagents genuinely add value. 

    Finally, we moved through staff and public A/B testing, then analyzed production metrics across reliability, responsiveness, subagent workload, and quality. The gains did not come primarily from making individual LLM calls faster. Instead, it reduced orchestration overhead by avoiding unnecessary subagent paths and lowering subagent workload per user. 

    That end-to-end process let us move from problem signal to shipped improvement while keeping the user experience stable: fewer avoidable handoffs, fewer failure-prone tool paths, and no quality regression. 

    Outcomes

    After rolling smarter subagent delegation to production traffic, we saw measurable percentage improvements across reliability and responsiveness (Table 1): 

    DimensionMetricDelta
    Reliability Tool failures per session 23% reduction 
    Reliability Search tool failures27% reduction
    ReliabilityEdit tool failures18% reduction
    ResponsivenessTotal user wait time at P955% lower
    ResponsivenessTotal user wait time at P753% lower
    QualityQuality metricsNo regression
    Table 1. Production A/B test outcomes
    MetricDelta vs. controlInterpretation
    Failed raw subagent search calls15% reductionReliability – fewer failure-prone subagent search paths.
    Average subagent LLM duration per user12% lowerResponsiveness – reduced orchestration overhead per user.
    P95 subagent LLM duration per user18% lowerResponsiveness – better worst-case subagent overhead.
    Table 2. Directional agent trajectory analysis behind the A/B test outcome

    These results show that better orchestration can improve the developer experience even when the visible feature surface doesn’t change. By teaching Copilot CLI when to delegate, when not to delegate, and how to parallelize the right work, we reduced friction in the agent loop itself. 

    That is the power of GitHub Copilot as a system: the experience gets better not because developers are given more switches to manage, but because Copilot becomes better at allocating models, tools, and subagents behind the scenes. 

    How this benefits developers today

    For developers using Copilot CLI, this should feel like a smoother day-to-day experience. Straightforward tasks are more likely to be handled directly, complex tasks still get specialist help when it adds value, and long-running sessions keep moving with less unnecessary waiting. In practice, Copilot CLI becomes more efficient and less noisy without asking developers to work differently. 

    The change is intentionally behind the scenes. Your workflow stays the same, but Copilot CLI is better at coordinating the work: fewer unnecessary handoffs, less repeated search work, fewer failed tool paths, and faster progress on long-running or multi-step tasks. 

    What’s next

    This work is one step toward our larger goal of improving how Copilot CLI chooses the right model, agent, and tools across your workflow. While having more agents and models available expands what Copilot can do, the value to developers depends on how well Copilot applies them across the work they are already doing, like reading files, running commands, and moving from an issue toward a pull request. 

    As tasks become more complex, the quality of that orchestration matters more. The best system is not the one that delegates the most, but the one that knows when to act directly, when to delegate, and how to keep work moving without adding friction. 

    The next step is making Copilot CLI more adaptive across models, agents, skills, and tools, so developers don’t have to decide whether a task needs a larger model, a specialist subagent, or a procedural skill. Copilot should make that decision based on the task, repository context, policy, and expected outcome. 

    We will continue improving how Copilot CLI plans work, coordinates subagents, and measures end-to-end outcomes. That includes better visibility into main-agent and subagent behavior, deeper analysis of failure reasons, and stronger proxy metrics for orchestration quality. The goal is simple: less waiting, fewer avoidable failures, and more useful progress from every agent session. 

    Get started today and share feedback

    Update GitHub Copilot CLI by running the /update command in your terminal to version 1.0.42 or later.  

    Already tried it? We’d love to hear what you think. Share feedback with the /feedback command in a CLI session or open an issue in our public repository. 

    Acknowledgements

    Smarter subagent delegation was made possible by collaboration across Code|AI, Copilot CLI, experimentation, human evaluation, and product teams. Thanks to everyone who helped identify the problem, design the process, validate the outcome, and ship the improvement to production. 

    The post How we made GitHub Copilot CLI more selective about delegation appeared first on The GitHub Blog.

    • GitHub Copilot CLI for Beginners: Overview of common slash commands GitHub Blog
    • Give GitHub Copilot CLI real code intelligence with language servers GitHub Blog
    • From one-off prompts to workflows: How to use custom agents in GitHub Copilot CLI GitHub Blog
    • Introducing Copilot CLI and agentic features in JetBrains IDEs GitHub
    • Copilot CLI Tutorial #11 - Delegating Tasks to the Cloud The Net Ninja
    • Copilot CLI Tutorial #10 - Code Review Agent The Net Ninja
    • Copilot CLI Tutorial #9 - Custom Agents The Net Ninja
    • Copilot CLI Tutorial #8 - MCP Servers The Net Ninja
    • Copilot CLI Tutorial #7 - Skills The Net Ninja
    • Copilot CLI Tutorial #6 - Plan Mode The Net Ninja
    • Copilot CLI Tutorial #5 - Context Management The Net Ninja
  • GitHub Blog github.blog developer github technology 2026-06-10 16:00
    ↗

    Install and configure LSP servers for GitHub Copilot CLI, replacing brute-force grep/decompile with real code intelligence. The post Give GitHub Copilot CLI real code intelligence with language servers appeared first on The GitHub Blog.

    Ever watched GitHub Copilot CLI extract a JAR file to a temporary directory, grep through .class files, and piece together an API signature from raw bytecode? The agent is resourceful, but without a language server, that’s the best it can do.

    The Language Server Protocol (LSP) is the standard that powers go to definition, find references, and type resolution in editors like VS Code. It works just as well in the terminal. The LSP Setup skill automates the installation and configuration of LSP servers for Copilot CLI, so the agent gets precise, structured answers about your code instead of relying on text search heuristics.

    In this post, you’ll learn how the skill works under the hood, see the configuration format it generates, and get set up for any of the 14 languages it supports today.

    The problem: heuristic code understanding

    Without an LSP server, the agent in GitHub Copilot CLI reverse-engineers API information through text search and binary extraction. For a Java project, that might look like:

    # Find the dependency JAR 
    find ~/.m2/repository -name "*httpclient*.jar" 
     
    # Extract it to a temp directory 
    mkdir /tmp/httpclient && cd /tmp/httpclient 
    jar xf ~/.m2/repository/org/apache/httpcomponents/httpclient/4.5.14/httpclient-4.5.14.jar 
     
    # Search extracted class files for a method 
    grep -r "execute" --include="*.class" .

    For Python, the agent might cat files inside site-packages. For TypeScript, it walks node_modules. These text-based approaches work for simple cases, but they’re doing pattern-matching over raw text rather than true semantic analysis, so they miss generics, overloads, and transitive types, and can’t see compiled bytecode at all. That’s exactly the gap a language server close.

    An LSP server solves this structurally. When the agent sends a textDocument/definition request for a symbol, the language server returns the exact source location, fully resolved type, and signature.

    What is an agent skill?

    Agent skill is a reusable instruction set that extends what an AI coding agent can do. Skills are defined in Markdown files with YAML frontmatter and follow a standard structure: trigger descriptions, step-by-step workflows, reference data, and behavioral constraints.

    The LSP Setup skill uses this structure to guide the agent through a multi-step installation process, detecting the operating system, choosing the right package manager, writing valid configuration, and verifying the result.

    How the LSP Setup skill works

    When triggered, the skill executes a seven-step workflow:

    1. Language selection

    The agent uses ask_user with a set of choices to determine which language the user needs LSP support for. This drives all subsequent steps.

    2. Operating system detection

    The agent runs uname -s (or checks $env:OS / %OS% on Windows) to determine the target platform. Install commands vary by operating system. For example, brew install jdtls on macOS versus downloading from eclipse.org on Linux.

    3. LSP server lookup

    The skill includes a reference file (references/lsp-servers.md) with curated data for 14 languages: install commands per operating system, binary names, and ready-to-use config snippets. The agent reads this file and selects the matching entry.

    4. Configuration scope

    The agent asks whether the config should be:

    • User-level: ~/.copilot/lsp-config.json—applies to all repositories
    • Repository-level: lsp.json at the repository root or .github/lsp.json—scoped to a single project

    Repository-level configuration takes precedence when both exist.

    5. Installation

    The agent runs the appropriate install command. For example:

    # TypeScript on any OS 
    npm install -g typescript typescript-language-server 
     
    # Java on macOS 
    brew install jdtls 
     
    # Rust on any OS 
    rustup component add rust-analyzer

    6. Configuration

    The agent writes or merges an entry into the chosen config file. The format uses a lspServers object where each key is a server identifier:

    { 
      "lspServers": { 
        "java": { 
          "command": "jdtls", 
          "args": [], 
          "fileExtensions": { 
            ".java": "java" 
          } 
        } 
      } 
    } 

    Key rules the skill enforces:

    • command must be on $PATH or an absolute path
    • args typically includes "--stdio" for standard I/O transport (some servers like jdtls handle this internally)
    • fileExtensions maps each extension (with leading dot) to a language identifier
    • Existing entries in the config file are preserved — the agent merges, never overwrites

    7. Verification

    The agent runs which <binary> (or where.exe on Windows) to confirm the server is accessible, then validates the config file is well-formed JSON.

    Supported languages

    The skill comes with a set of predefined language servers for several programming languages. If the coding agent faces one that it is not mapped out already, it will search for an appropriate server and walk you through manual configuration.

    What changes after setup

    Once an LSP server is configured, the CLI agent can:

    • Resolve types across dependencies — no more grepping through JAR files or node_modules
    • Jump to definitions in third-party libraries, even when source isn’t checked into the repository
    • Find all references to a symbol across the project
    • Read hover documentation for any function, class, or type

    This means the agent spends less time on tool calls and produces more accurate code on the first pass. For you, that’s less time waiting while the agent decompiles a JAR file or greps through node_modules to answer a question your IDE already knows, and fewer wrong turns built on a misread signature. The agent reasons about your code with the same structured understanding you get from go-to-definition in your editor, so you can hand it bigger, gnarlier tasks and trust the result.

    Get started

    1. Download the skill: visit the Awesome Copilot LSP Setup skill page and click the Download button to get a ZIP file.
    2. Extract the ZIP to ~/.copilot/skills/ by running:
    unzip lsp-setup.zip -d ~/.copilot/skills/
    1. Restart GitHub Copilot CLI: if Copilot CLI is already running, type /exit first. Then relaunch copilot so it picks up the new skill.
    2. Ask the agent to set up a language server: for example, “set up LSP for Java” or “enable code intelligence for Python”.
    3. Verify: after the skill installs and configures the LSP server, restart Copilot CLI one more time (/exit, then relaunch), run /lsp to check the server status, and try go-to-definition on a symbol from one of your dependencies.

    The skill is part of the Awesome Copilot project. It’s open source, so contributions and feedback are welcome!

    The post Give GitHub Copilot CLI real code intelligence with language servers appeared first on The GitHub Blog.

    • GitHub Copilot CLI for Beginners: Overview of common slash commands GitHub Blog
    • How we made GitHub Copilot CLI more selective about delegation GitHub Blog
    • From one-off prompts to workflows: How to use custom agents in GitHub Copilot CLI GitHub Blog
    • Introducing Copilot CLI and agentic features in JetBrains IDEs GitHub
    • Copilot CLI Tutorial #11 - Delegating Tasks to the Cloud The Net Ninja
    • Copilot CLI Tutorial #10 - Code Review Agent The Net Ninja
    • Copilot CLI Tutorial #9 - Custom Agents The Net Ninja
    • Copilot CLI Tutorial #8 - MCP Servers The Net Ninja
    • Copilot CLI Tutorial #7 - Skills The Net Ninja
    • Copilot CLI Tutorial #6 - Plan Mode The Net Ninja
    • Copilot CLI Tutorial #5 - Context Management The Net Ninja
  • Ebenezer Don youtube.com channel video web-development youtube 2026-06-10 08:38
    ↗

    Anthropic just launched a Mythos-tier model called Fable 5. It broke coding benchmarks (around 80% on SWE-Bench Pro vs GPT-5.5's 58), and did a 50-million-line code migration in a single day. But there's a catch: Fable 5 is really their secret "Mythos" model with a leash on...

    ▶ Watch on YouTube Opens in a new tab
    Anthropic just launched a Mythos-tier model called Fable 5. It broke coding benchmarks (around 80% on SWE-Bench Pro vs GPT-5.5's 58), and did a 50-million-line code migration in a single day. But there's a catch: Fable 5 is really their secret "Mythos" model with a leash on it, and the most jaw-dropping numbers you've seen belong to a version you can't actually buy. I unpacked the whole story in my new video 👉 https://youtu.be/qipJ7umHjAs #programming #ai #claude
    • Coding with Fable 5 is actually insane. ForrestKnight
    • They Beat Fable 5? (WHAT) Codedamn
    • I Used Fable 5 (Mythos) For 48 Hours - Here's My Review Codedamn
    • Claude Fable 5 Suspension and Refunds Codevolution
    • How to Use Claude Fable 5 Codevolution
    • Building Tony Stark's 'Jarvis' with Claude Fable 5 DesignCourse
    • Claude Fable 5 UI/UX One-Shots - 5 Tests DesignCourse
    • Shocking Fable 5 Global Shutdown! #shorts KodeKloud
    • They Killed an AI Model Overnight (Fable 5 & Mythos 5) Traversy Media
    • BREAKING: The US government just took down Claude Fable 5 and it's worse than it looks Ebenezer Don
    • They shut down Claude Fable 5. It's worse than it looks Ebenezer Don
    • Claude Fable 5 is here. Nobody can use it. Ebenezer Don
  • stanfordonline youtube.com channel computer-sciences video youtube 2026-06-15 23:06
    ↗

    Learn more about Stanford's online Healthcare AI programs: https://stanford.io/3NEt7uE Check out the AI in Healthcare series playlist:https://stanford.io/3NEt7uE Matt Lungren, Stanford University - https://profiles.stanford.edu/matthew-lungren Justin Norden, Stanford...

    ▶ Watch on YouTube Opens in a new tab
    Learn more about Stanford's online Healthcare AI programs: https://stanford.io/3NEt7uE Check out the AI in Healthcare series playlist:https://stanford.io/3NEt7uE Matt Lungren, Stanford University - https://profiles.stanford.edu/matthew-lungren Justin Norden, Stanford University - https://profiles.stanford.edu/justin-norden Guest speaker: DJ Patil, former US Chief Data Scientist and Health Tech Entrepreneur This episode of the Stanford Healthcare AI podcast explores how AI is transforming healthcare security, policy, and patient empowerment. The guest, DJ Patil, former U.S. Chief Data Scientist and health tech entrepreneur, warns that hospitals are “sitting targets” for cyberattacks from nation-states using even “dumb” AI models. They discuss gaps in U.S. cybersecurity ownership, the need to treat healthcare as critical infrastructure, and the risks of ransomware-style “terrorism.” Balancing this, they highlight the explosive growth of tools like Open Evidence and GPT for clinicians, rising patient engagement, and the moral question of whether powerful AI should be gated or widely accessible.
    • Growing on Purpose: The Work That Makes You. Jeremy Howard on human flourishing in the time of AI. Jeremy Howard
    • The Current State of AI for Software Engineers (2026) Gaurav Sen
    • AI Taking Jobs? The Politics of AI Job Replacement! #shorts How to Get an Analytics Job
    • 🔥Is Coding Really Dead in the Age of AI? | Intellipaat Intellipaat
    • How Did Python Become the Language of AI? Cave of Programming
    • Tax the Hell out of AI Chris Hawkes
    • 54% AI-Generated and Climbing — State of AI Level Up Tuts
    • The 3 Types of AI Agents Every Developer Should Know Real Python
  • Open Data Science youtube.com channel pobcasts video youtube 2026-06-18 13:12
    ↗

    In this episode of the ODSC Ai X Podcast, Sheamus McGovern speaks with Maxime Beauchemin and Evan Rusackas from Preset about Generative UI and the future of agentic analytics. Maxime Beauchemin is the creator of Apache Superset and Apache Airflow, and the founder and CEO of...

    ▶ Watch on YouTube Opens in a new tab
    In this episode of the ODSC Ai X Podcast, Sheamus McGovern speaks with Maxime Beauchemin and Evan Rusackas from Preset about Generative UI and the future of agentic analytics. Maxime Beauchemin is the creator of Apache Superset and Apache Airflow, and the founder and CEO of Preset. Evan Rusackas leads developer relations and marketing at Preset and works closely with the Apache Superset community. The conversation explores how AI agents are beginning to generate charts, dashboards, widgets, and interfaces on demand. Max and Evan also discuss MCP, agentic analytics, the changing role of data analysts, governance, evals, and how open-source BI tools like Apache Superset are adapting to the AI era. Visit our website and choose the nearest ODSC event to attend and experience all our training and workshops: https://odsc.ai To watch more videos like this, visit https://aiplus.training Sign up for the newsletter to stay up to date with the latest trends in data science: https://opendatascience.com/newsletter/ Follow us online! • Facebook: https://www.facebook.com/OPENDATASCI • Instagram: https://www.instagram.com/odsc/ • Blog: https://opendatascience.com/ • LinkedIn: https://www.linkedin.com/company/open-data-science/ • X (twitter): https://x.com/_odsc
    • Adobe Says Its Expanded AI Agents Are There to 'Guide You Down the Happy Path' CNET News
    • AI Agents Today Aren't Secure. They're Just Clumsy DEV Community
    • Announcing ADK for Kotlin and ADK for Android 0.1.0: Building AI Agents on Android and Beyond Google Developers Blog
    • Orphaned AI Agents: How to Find Hidden Access Risks Inside Your Network The Hacker News
    • Announcing ADK for Kotlin and ADK for Android 0.1.0: Building AI Agents on Android and Beyond Google Developers Blog
    • Research Paper: AI Agents and the ReAct Pattern Gaurav Sen
    • AI Agents as "Games Masters"? 🎮🔥 Two Minute Papers
    • Canceling Subscriptions, Building Local AI Agents Tina Huang
    • AI Agents Fail Tina Huang
    • How Modern AI Agents Work Under the Hood Harkirat Singh
    • If You're Building AI Agents in 2026, Watch This ft. @oracledevs Harkirat Singh
    • connecting all scientific knowledge for ai agents??? Yacine Mahdid
    • 3 patterns to build long-running AI agents Google Cloud Tech
    • Building long-running AI agents with ADK Google Cloud Tech
    • How to build reliable software with AI agents Google Cloud Tech
    • Voice for AI Agents and Applications DeepLearningAI
    • Securing AI Agents: Risk, Governance, Recovery, and Anthropic’s Mythos with Arvind Nithrakashyap Open Data Science
    • Why the Way You're Giving AI Agents Data Access Is Probably Wrong The Ravit Show
    • Will AI Agents Replace Jobs in 2026? The Invisible Shift in Work Intellipaat
    • The 3 Types of AI Agents Every Developer Should Know Real Python
    • Build 3 PRODUCTION AI Agents in Python - Full Course (Agentspan) Tech With Tim
    • This is why my AI Agents never guess JavaScript Mastery
  • Harkirat Singh youtube.com channel informational video youtube 2026-06-02 12:45
    ↗

    Article link: https://fandf.co/4dXJP1m Checkout Oracle Blogs: https://blogs.oracle.com/ Every AI agent Cursor, Claude, Devin runs the same core loop. If you're building anything agentic in 2026 and don't understand it, you're going to waste weeks debugging the wrong thing....

    ▶ Watch on YouTube Opens in a new tab
    Article link: https://fandf.co/4dXJP1m Checkout Oracle Blogs: https://blogs.oracle.com/ Every AI agent Cursor, Claude, Devin runs the same core loop. If you're building anything agentic in 2026 and don't understand it, you're going to waste weeks debugging the wrong thing. Full engineering breakdown from Oracle's dev team linked in pinned comment. @oracledevs #Paid partnership with Oracle 🔗 𝗟𝗶𝗻𝗸𝘀: Open Source Cohort → https://100xdevs.com Twitter → https://twitter.com/kirat_tw Linkedin → https://linkedin.com/in/kirat-li Instagram → https://www.instagram.com/kirat_ins Discord → https://discord.com/invite/WAaXacK9bh Telegram → https://t.me/kirat_internal_group WhatsApp → https://whatsapp.com/channel/0029Va98SYeHrDZhfxCT6s0a
    • Adobe Says Its Expanded AI Agents Are There to 'Guide You Down the Happy Path' CNET News
    • AI Agents Today Aren't Secure. They're Just Clumsy DEV Community
    • Announcing ADK for Kotlin and ADK for Android 0.1.0: Building AI Agents on Android and Beyond Google Developers Blog
    • Orphaned AI Agents: How to Find Hidden Access Risks Inside Your Network The Hacker News
    • Announcing ADK for Kotlin and ADK for Android 0.1.0: Building AI Agents on Android and Beyond Google Developers Blog
    • Research Paper: AI Agents and the ReAct Pattern Gaurav Sen
    • AI Agents as "Games Masters"? 🎮🔥 Two Minute Papers
    • Canceling Subscriptions, Building Local AI Agents Tina Huang
    • AI Agents Fail Tina Huang
    • How Modern AI Agents Work Under the Hood Harkirat Singh
    • connecting all scientific knowledge for ai agents??? Yacine Mahdid
    • 3 patterns to build long-running AI agents Google Cloud Tech
    • Building long-running AI agents with ADK Google Cloud Tech
    • How to build reliable software with AI agents Google Cloud Tech
    • Voice for AI Agents and Applications DeepLearningAI
    • Securing AI Agents: Risk, Governance, Recovery, and Anthropic’s Mythos with Arvind Nithrakashyap Open Data Science
    • Generative UI: When AI Agents Design the Interface with Maxime Beauchemin and Evan Rusackas Open Data Science
    • Why the Way You're Giving AI Agents Data Access Is Probably Wrong The Ravit Show
    • Will AI Agents Replace Jobs in 2026? The Invisible Shift in Work Intellipaat
    • The 3 Types of AI Agents Every Developer Should Know Real Python
    • Build 3 PRODUCTION AI Agents in Python - Full Course (Agentspan) Tech With Tim
    • This is why my AI Agents never guess JavaScript Mastery
  • Web Dev Simplified youtube.com channel tutorial video web-development youtube 2026-06-16 16:00
    ↗

    FREE Web Dev Roadmap: https://webdevsimplified.com/web-dev-roadmap.html?utm_source=youtube&utm_medium=video-description&utm_term=video-id-cxQLKsktiBA Writing code with AI can be frustrating since AI always seems to generate terrible code. In this video I will show you how you...

    ▶ Watch on YouTube Opens in a new tab
    FREE Web Dev Roadmap: https://webdevsimplified.com/web-dev-roadmap.html?utm_source=youtube&utm_medium=video-description&utm_term=video-id-cxQLKsktiBA Writing code with AI can be frustrating since AI always seems to generate terrible code. In this video I will show you how you can fix this problem by using AI skills which teach your AI the exact techniques needed to produce high quality code exactly like you want it. 📚 Materials/References: My Blog: https://blog.webdevsimplified.com/?utm_source=youtube&utm_medium=video-description&utm_term=video-id-cxQLKsktiBA FREE Web Dev Roadmap: https://webdevsimplified.com/web-dev-roadmap.html?utm_source=youtube&utm_medium=video-description&utm_term=video-id-cxQLKsktiBA 🌎 Find Me Here: My Blog: https://blog.webdevsimplified.com My Courses: https://courses.webdevsimplified.com Patreon: https://www.patreon.com/WebDevSimplified Twitter: https://twitter.com/DevSimplified Discord: https://discord.gg/7StTjnR GitHub: https://github.com/WebDevSimplified CodePen: https://codepen.io/WebDevSimplified ⏱️ Timestamps: 00:00 - Introduction 00:55 - What are skills 02:58 - How to find skills 08:53 - How to make your own skills 17:49 - Skill creation best practices 22:44 - My custom skill example 27:04 - How to refine skills #WebDevelopment #WDS #AISkills
    • From one-off prompts to workflows: How to use custom agents in GitHub Copilot CLI GitHub Blog
    • How to Use Watch Window in Excel 365 Simon Sez IT
    • How to Use Copilot in PowerPoint to Create Presentations for Different Audiences | NEW Copilot Simon Sez IT
    • How to Use Agent Mode in Excel for Sentiment Analysis Simon Sez IT
    • AI Coding (Part 2): LTI Allow Tools to use LTI Bearer Tokens to Access WebAPI - SAK-52581 Chuck Severance
    • AI Coding (No Audio): LTI Allow Tools to use LTI Bearer Tokens to Access WebAPI - SAK-52581 Chuck Severance
    • How to Use Claude Fable 5 Codevolution
    • PHP Enums Explained: How to Use Enums in PHP 8.1+ Dani Krossing
    • How to Use GitHub For Beginners Website Learners
    • Anthropic's best model ever... that you're not allowed to use: Fable 5 #ai #claude #chatgpt Ebenezer Don
  • Siraj Raval youtube.com artificial-intelligence-and-machine-learning channel computer-science video youtube 2026-06-02 09:52
    ↗

    I gave an AI my voice, asked it to write a country breakup song about dumping a developer, and shipped it in 8 minutes. Here's how, plus the ML that makes it possible in 2026. 🎵 Listen to "Sound of Losing You" on Spotify: https://open.spotify.com/album/3DQZtFYzuHWxUJyLJ5tFlX...

    ▶ Watch on YouTube Opens in a new tab
    I gave an AI my voice, asked it to write a country breakup song about dumping a developer, and shipped it in 8 minutes. Here's how, plus the ML that makes it possible in 2026. 🎵 Listen to "Sound of Losing You" on Spotify: https://open.spotify.com/album/3DQZtFYzuHWxUJyLJ5tFlX 🎤 Try Fish Audio S2 Pro free: https://fish.audio/?fpr=siraj80 - code SIRAJ20 for 20% off 💻 Fish Audio is open source: https://github.com/fishaudio/fish-speech Chapters: 00:00 The AI Country Song 00:21 A Brief History of AI Voice 01:51 Fish Audio S2 Pro + Emotion Control 02:44 Cloning My Voice (Tutorial) 04:23 Adding Emotion, Line by Line 05:17 Inside the Model: How It Works 07:15 Writing the Country Breakup Song 07:58 Stitching It in CapCut 08:48 Uploading to Spotify 09:01 Make Your Own + What's Next This video is sponsored by Fish Audio. The voice and song are AI-generated; all opinions are my own. 📬 CONTACT Business: hello@sirajraval.com 📲 FOLLOW X: https://x.com/sirajraval Instagram: https://instagram.com/sirajraval LinkedIn: https://linkedin.com/in/sirajraval 🔔 Subscribe for more AI videos! #AI #VoiceAI #FishAudio #AImusic #AIcountrysong
    • Allbirds Used to Make Viral Wool Sneakers. Now It’s an AI Company Called ‘Smartbird.’ Entrepreneur.com
    • DeepInflation: an AI agent for research and model discovery of inflation arXiv - hep-th
    • I Hacked an AI Customer Service Agent in 8 Seconds Siraj Raval
    • I Quit Chrome for an AI Browser. It Actually Worked. Siraj Raval
    • Building an AI Interviewer From Scratch in 3 Hours Harkirat Singh
    • How an AI Agent Deleted PocketOS Production in 9 Seconds Kent C. Dodds
    • How to build an AI Agent and MCP Server (step-by-step) Google Cloud Tech
    • How to Add an AI Chatbot to Your Client's Website Code with Ania Kubów #JavaScriptGames
    • I Built an AI Agent That Fixes My Resume Codevolution
    • What Is an AI Agent? LLMs, Tools, and a Loop Real Python
    • How to Become an AI Engineer in 2026 Tech With Tim
    • They Killed an AI Model Overnight (Fable 5 & Mythos 5) Traversy Media
  • The Ravit Show youtube.com channel pobcasts video youtube 2026-06-09 22:49
    ↗

    What happens when enterprise data lives everywhere, but AI needs a single source of truth? That was the focus of my conversation with Mark Lyons from Cloudera at Snowflake Summit on The Ravit Show. As enterprises continue to embrace AI, many are navigating increasingly...

    ▶ Watch on YouTube Opens in a new tab
    What happens when enterprise data lives everywhere, but AI needs a single source of truth? That was the focus of my conversation with Mark Lyons from Cloudera at Snowflake Summit on The Ravit Show. As enterprises continue to embrace AI, many are navigating increasingly complex hybrid and multi-cloud environments. The challenge isn't collecting more data. It's making data accessible, governed, and usable across the entire organization We also discussed why open architectures and interoperability are becoming so important. Customers want flexibility, not lock-in. They want to leverage the best technologies while maintaining a strong foundation for analytics and AI The Cloudera and Snowflake partnership is focused on helping customers do exactly that, creating a path toward trusted data, faster innovation, and better business outcomes. #Data #AI #SnowflakeSummit #Snowflake #Cloudera #DataAI #EnterpriseAI #HybridCloud #MultiCloud #TheRavitShow
    • Everything you need to know about the ABC Classic 100: Greatest of All Time ABC News (Australia)
    • Need to Scan Important Documents? Use Your iPhone's Hidden Scanner CNET News
    • There’s no need to include ‘navigation’ in your navigation labels CSS-Tricks
    • Celeste Fans Need To Check Out This New Platformer ASAP Kotaku
    • What You Need to Know About How Tear Gas Harms Kids ProPublica
    • Microsoft 365 Security: Features You NEED to Know! #shorts How to Get an Analytics Job
    • Why you need to try the GitHub Copilot desktop app GitHub
    • Claude 4.8 - Three Things You Need To See Tyler Moore
    • Spring Security 7 Crash Course [2026] – Everything You Need to Know Amigoscode
    • You're writing twice as much CSS as you need to Kevin Powell
  • The Guardian - Technology theguardian.com guardian news tech technology uk 2026-06-18 14:15
    ↗

    Love or hate Amazon, its 23-26 June Prime Day event is a good time to snag discounts on tech, fashion and more, including much-loved brands such as Anyday and CarawaySign up for the Filter US newsletter, your weekly guide to buying fewer, better thingsYou don’t have the wait...

    Love or hate Amazon, its 23-26 June Prime Day event is a good time to snag discounts on tech, fashion and more, including much-loved brands such as Anyday and Caraway

    • Sign up for the Filter US newsletter, your weekly guide to buying fewer, better things

    You don’t have the wait until after Turkey Day: early summer is actually one of the best times of the year to snag a deal. Amazon is kicking off its annual summer sale on 23 June, and just as Christmas songs start playing in stores two months early, the company and many other retailers are slashing prices in advance.

    We’ve handpicked 31 of the best deals based on products the Filter has tested and loved in the past, including discounts on some of our favorite brands such as Field Company, Anyday and Caraway. If you want to shop at Amazon, we’ve handpicked products that are actually worth your money, and very few require a Prime subscription. If you prefer other retailers, we have oodles of those too.

    Best tech deal:
    AirPods Pro 3

    Best home deal:
    Levoit Tower Fan

    Continue reading...
    • How to pray when you don’t believe in God Vox
    • Don’t touch the art Aeon
    • Americans keep voting for scandal-prone candidates because they just don’t want the other party to win The Conversation US
    • You don’t need a special talent to learn a new language #TEDTalks TED
    • S26 Ultra vs iPhone don’t matter… Andres Vidoza
    • You Don’t Really Own Your Computer Anymore... Andres Vidoza
    • Jobs Listing Are Up This Month Don’t Miss It CodingPhase
    • Codingphase Last Day Don’t Want To Miss It CodingPhase
    • Don’t build anything until you’ve validated the idea Life of Luba
    • Don’t rely on average looking AI design! Flux
  • Kevin Powell youtube.com channel tutorial video youtube 2026-05-21 13:00
    ↗

    Modern #css is amazing

    ▶ Watch on YouTube Opens in a new tab
    Modern #css is amazing
    • Everything you need to know about the ABC Classic 100: Greatest of All Time ABC News (Australia)
    • Need to Scan Important Documents? Use Your iPhone's Hidden Scanner CNET News
    • There’s no need to include ‘navigation’ in your navigation labels CSS-Tricks
    • Celeste Fans Need To Check Out This New Platformer ASAP Kotaku
    • What You Need to Know About How Tear Gas Harms Kids ProPublica
    • Microsoft 365 Security: Features You NEED to Know! #shorts How to Get an Analytics Job
    • Why you need to try the GitHub Copilot desktop app GitHub
    • What Enterprise Leaders Need to Know About Hybrid Data and AI The Ravit Show
    • Claude 4.8 - Three Things You Need To See Tyler Moore
    • Spring Security 7 Crash Course [2026] – Everything You Need to Know Amigoscode
  • Flutter(Official) youtube.com channel flutter tutorial video youtube 2026-05-28 16:01
    ↗

    Catch up on the biggest updates from Flutter at Google I/O 2026! From announcing Flutter 3.44 and Dart 3.12 to groundbreaking AI capabilities with GenUI, a massive 40% performance boost on the Web, Flutter powering the new 2026 Toyota RAV4, and so much more. Here’s everything...

    ▶ Watch on YouTube Opens in a new tab
    Catch up on the biggest updates from Flutter at Google I/O 2026! From announcing Flutter 3.44 and Dart 3.12 to groundbreaking AI capabilities with GenUI, a massive 40% performance boost on the Web, Flutter powering the new 2026 Toyota RAV4, and so much more. Here’s everything that you need to know. Check out the blogs: What’s New in Flutter 3.44 → https://goo.gle/4dL03L8 Announcing Dart 3.12 → https://goo.gle/3PHy1rS Everything Flutter at Google I/O 2026 → https://goo.gle/4vfb1PR Check out the videos: What’s New in Flutter → https://goo.gle/4uA1Vxx How to write really good Flutter code → https://goo.gle/497aDuu Vibe once, run anywhere with Google Antigravity and Flutter → https://goo.gle/4e5TnbG Flutter + A2UI = GenUI→ https://goo.gle/4f9Enul How to unify your app's tech stack with Full-stack Dart and Firebase Functions → https://goo.gle/4dT1qZh Introducing Genkit Dart → https://goo.gle/4wUjZ74 Everything you don't know about building great native apps with Flutter → https://goo.gle/42KbFJg How Toyota is revolutionizing their infotainment system with Flutter → https://goo.gle/4eX8JAa Chapters: 0:00 - Dart Cloud Functions for Firebase 0:47 - Developer experience 1:02 - Building AI-powered experiences 2:26 - Flutter’s GenUI SDK 2:41 - Flutter x Google DeepMind showcase with Li-Te Cheng 3:13 - Platforms 4:04 - Toyota showcase 4:29 - The refined Impeller engine 4:40 - Decoupling the Material and Cupertino libraries 5:04 - Announcing Canonical as lead maintainer for Flutter desktop Subscribe to Flutter → http://goo.gle/FlutterYT #GoogleIO #Flutter Speaker: Khanh Nguyen Products mentioned: Flutter, Dart
    • Back in 2004, email seemed like a solved problem. But an engineer at Google had different ideas... freeCodeCamp.org
    • Dr. Deepika Chopra | The Power of Real Optimism | Talks at Google Talks at Google
    • Behind-the-scenes at Google Dublin with Senior Account Strategist Céline Life at Google
    • Working at Google: Technical Program Manager, Physical Security Technology Integration Life at Google
    • Turns out the best day at Google was the one before Google became your routine. MTECHVIRAL
  • Google Cloud Tech youtube.com channel organizations video youtube 2026-06-18 13:00
    ↗

    Follow the codelab here. → https://goo.gle/4vv5sx5 Github Repo → https://goo.gle/3RQR3g7 Google MCP servers → https://goo.gle/4xfafo8 Model Context Protocol (MCP) is the open standard *"universal adapter"* that empowers AI agents to overcome static training data by securely...

    ▶ Watch on YouTube Opens in a new tab
    Follow the codelab here. → https://goo.gle/4vv5sx5 Github Repo → https://goo.gle/3RQR3g7 Google MCP servers → https://goo.gle/4xfafo8 Model Context Protocol (MCP) is the open standard *"universal adapter"* that empowers AI agents to overcome static training data by securely and uniformly connecting with the real world's live data and actionable tools. Join Smitha Kolan as she demonstrates how to connect external tools, such as Google Trends, using MCPs with AI agents. Watch along and unlock the power of Model Context Protocol (MCP) with Google's Agent Development Kit (ADK). Chapters: 0:00 - Intro & What is Model Context Protocol (MCP)? 0:49 - How MCP works under the hood 2:41 - [Demo] Connecting Google Trends with a blog writing AI agent 6:22 - Running the agent in ADK Web UI 7:10 - Summary More resources: Google Cloud MCP servers docs → https://goo.gle/4oeVaPk Manage MCP servers docs → https://goo.gle/3PLKtqG Configure MCP in an AI application → https://goo.gle/4oab6lP 🔗 Connect with Smitha online: YouTube → https://goo.gle/Smitha-on-YouTube Linkedin → https://goo.gle/Smitha-on-LinkedIn X → https://goo.gle/Smitha-on-X Watch more Modern AI Agents: From Theory to Production → https://goo.gle/Learn-with-Smitha 🔔 Subscribe to Google Cloud Tech → https://goo.gle/GoogleCloudTech #AIAgents #GoogleTrends Speakers: Smitha Kolan Products Mentioned: Agent Development Kit
    • Allbirds Used to Make Viral Wool Sneakers. Now It’s an AI Company Called ‘Smartbird.’ Entrepreneur.com
    • DeepInflation: an AI agent for research and model discovery of inflation arXiv - hep-th
    • I Hacked an AI Customer Service Agent in 8 Seconds Siraj Raval
    • I Built an AI That Wrote Me a Country Breakup Song Siraj Raval
    • I Quit Chrome for an AI Browser. It Actually Worked. Siraj Raval
    • Building an AI Interviewer From Scratch in 3 Hours Harkirat Singh
    • How an AI Agent Deleted PocketOS Production in 9 Seconds Kent C. Dodds
    • How to Add an AI Chatbot to Your Client's Website Code with Ania Kubów #JavaScriptGames
    • I Built an AI Agent That Fixes My Resume Codevolution
    • What Is an AI Agent? LLMs, Tools, and a Loop Real Python
    • How to Become an AI Engineer in 2026 Tech With Tim
    • They Killed an AI Model Overnight (Fable 5 & Mythos 5) Traversy Media
  • arXiv - hep-th arxiv.org arxiv physics preprint repository science 2026-06-18 04:00
    ↗

    arXiv:2601.14288v2 Announce Type: replace-cross Abstract: We present DeepInflation, an AI agent designed for research and model discovery in inflationary cosmology. Built upon a multi-agent architecture, DeepInflation integrates Large Language Models (LLMs) with a symbolic...

    arXiv:2601.14288v2 Announce Type: replace-cross Abstract: We present DeepInflation, an AI agent designed for research and model discovery in inflationary cosmology. Built upon a multi-agent architecture, DeepInflation integrates Large Language Models (LLMs) with a symbolic regression (SR) engine and a retrieval-augmented generation (RAG) knowledge base. This framework enables the agent to automatically explore and verify the vast landscape of inflationary potentials while grounding its outputs in established theoretical literature. We demonstrate that DeepInflation can successfully discover simple and viable single-field slow-roll inflationary potentials consistent with the latest observations (with the ACT DR6 results taken as an example) or any given $n_s$ and $r$, and provide accurate theoretical context for obscure inflationary scenarios. DeepInflation serves as a prototype for a new generation of autonomous scientific discovery engines in cosmology, which enables researchers and non-experts alike to explore the inflationary landscape using natural language. This agent is available at https://github.com/pengzy-cosmo/DeepInflation.
    • Allbirds Used to Make Viral Wool Sneakers. Now It’s an AI Company Called ‘Smartbird.’ Entrepreneur.com
    • I Hacked an AI Customer Service Agent in 8 Seconds Siraj Raval
    • I Built an AI That Wrote Me a Country Breakup Song Siraj Raval
    • I Quit Chrome for an AI Browser. It Actually Worked. Siraj Raval
    • Building an AI Interviewer From Scratch in 3 Hours Harkirat Singh
    • How an AI Agent Deleted PocketOS Production in 9 Seconds Kent C. Dodds
    • How to build an AI Agent and MCP Server (step-by-step) Google Cloud Tech
    • How to Add an AI Chatbot to Your Client's Website Code with Ania Kubów #JavaScriptGames
    • I Built an AI Agent That Fixes My Resume Codevolution
    • What Is an AI Agent? LLMs, Tools, and a Loop Real Python
    • How to Become an AI Engineer in 2026 Tech With Tim
    • They Killed an AI Model Overnight (Fable 5 & Mythos 5) Traversy Media
  • Loading more…
Maibook — your private personalized AI community
  • rcanand.com
  • mlaillc.com
  • @rcanand (X)
  • LinkedIn
  • Feedback
  • Credits