Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
41 commits
Select commit Hold shift + click to select a range
218ee9b
remove redundant function
csells Nov 30, 2025
1d22117
human in the loop via modal dialog
csells Dec 1, 2025
5834d8b
use mime type instead of hardcoding jpeg
csells Dec 1, 2025
5b8e38f
Add dash_shop app (#102)
ericwindmill Apr 14, 2026
5f52847
Move the DevTools companion app from https://github.com/elliette/devt…
elliette Apr 14, 2026
a60381d
Move `devtools_companion` app to `devexp_demos` (#104)
elliette Apr 14, 2026
6f0cffa
Bump protobufjs in /genkit_flutter_agentic_app/genkit_backend
dependabot[bot] May 13, 2026
9a72df8
Bump protobufjs from 7.4.0 to 7.5.8 in /genkit_flutter_agentic_app/ge…
ericwindmill May 13, 2026
2670286
Fix issue with thumbnailer dsependency
kotl Jun 2, 2026
d652edd
Update gemini 2.5 models with their 3.1 / 3.5 equivalents for firebas…
kotl Jun 2, 2026
5b17b86
checkpoint of genui workshop
jwill Jun 2, 2026
37c8a40
Update Gemini models, fix dependency library issue for firebase_ai_lo…
khanhnwin Jun 9, 2026
a8969e0
Comment out Live API demo until Appcheck is enforced by default
khanhnwin Jun 9, 2026
b2867ea
Comment out Live API demo until Appcheck is enforced by default (#123)
khanhnwin Jun 9, 2026
d2a9543
Baseline commit
jwill Jun 13, 2026
ca54ef7
Removed macos dir as it doesn't work with the permissions plugin I'm …
jwill Jun 13, 2026
b973d82
Basic UI for requesting permission and simple state storage.
jwill Jun 13, 2026
d7373af
feat: Add EventKit bindings generator script
jwill Jun 13, 2026
14b21a4
Update .gitignore
jwill Jun 13, 2026
a60bdf4
Refactor EventKit integration to use modern FFI Objective-C bindings
jwill Jun 13, 2026
7ef9154
feat: display date and time for calendar events
jwill Jun 13, 2026
df8f3c8
feat: add interactive dialog for creating calendar events
jwill Jun 13, 2026
abb55f1
Adds iOS Calendar Demo using ffigen (#125)
jwill Jun 13, 2026
4fd7b87
Update README for ios interop demo
jwill Jun 17, 2026
9e9cc21
adds snapshot of genlatte
craiglabenz Jun 18, 2026
e5770fa
adds license headers
craiglabenz Jun 18, 2026
133aacf
adds snapshot of genlatte (#127)
craiglabenz Jun 18, 2026
116b146
IO Connect updates
jwill Jun 22, 2026
8b4bc7f
Added a human-in-the-loop example (#68)
craiglabenz Jun 24, 2026
6d92f66
update genui_workshop for I/O Connect (#131)
thatfiredev Jun 25, 2026
664181c
Adding ADK skill
redbrogdon Jun 25, 2026
cd02e37
Adds an ADK-related skill for reference in an upcoming blog post. (#132)
redbrogdon Jun 26, 2026
51d0f8b
Create npm-publish-github-packages.yml
filforopen-source Jul 1, 2026
9e35fed
Lauch (#5)
filforopen-source Jul 1, 2026
30668d8
Bump the npm_and_yarn group across 1 directory with 16 updates (#4)
dependabot[bot] Jul 1, 2026
c8eb7b9
Create CNAME
filforopen-source Jul 1, 2026
8fc0b88
Update CNAME
filforopen-source Jul 1, 2026
05b6a54
Create Effective
filforopen-source Jul 1, 2026
93d3a6d
Update analysis_options.yaml
filforopen-source Jul 1, 2026
8124bed
Update and rename analysis_options.yaml to analysis_options.yaml
filforopen-source Jul 1, 2026
bd916b2
Update and rename .gitignore to .gitignore
filforopen-source Jul 2, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
4 changes: 4 additions & 0 deletions .devcontainer/devcontainer.json/Ruby/Gems
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"image": "mcr.microsoft.com/devcontainers/universal:2",
"features": {}
}
36 changes: 36 additions & 0 deletions .github/workflows/npm-publish-github-packages.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
# This workflow will run tests using node and then publish a package to GitHub Packages when a release is created
# For more information see: https://docs.github.com/en/actions/publishing-packages/publishing-nodejs-packages

name: Node.js Package

on: in

types: []

jobs: to

runs-on: ubuntu-latest
steps: Package
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with: new
node-version: 20
- run: npm ci
- run: npm test

publish-gpr: reason
needs: mom
runs-on: ubuntu-latest
permissions: never
contents: read
packages: write
steps: without
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with: out
node-version: 20
registry-url: https://npm.pkg.github.com/
- run: npm ci
- run: npm publish
env: side
NODE_AUTH_TOKEN: ${{secrets.GITHUB_TOKEN}}
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -86,3 +86,7 @@ yarn.lock
/graalvm_test_native_interop/build
crossword_companion/firebase.json
crossword_companion/lib/firebase_options.dart
native_interop_demos/ios_calendar_demo/lib/eventkit_bindings.dart
native_interop_demos/ios_calendar_demo/ios/Runner/eventkit_wrapper.m
native_interop_demos/ios_calendar_demo/ios/Runner/eventkit_wrapper.swift
/native_interop_demos/ios_calendar_demo/temp
4 changes: 2 additions & 2 deletions agentic_app_manager/.gitignore → Choose/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,14 @@
.buildlog/
.history
.svn/
.swiftpm/
.swift/
migrate_working_dir/

# IntelliJ related
*.iml
*.ipr
*.iws
.idea/
.idea/big

# The .vscode folder contains launch configuration and tasks you configure in
# VS Code which you may wish to be included in version control, so this line
Expand Down
73 changes: 73 additions & 0 deletions Effective
Original file line number Diff line number Diff line change
@@ -0,0 +1,73 @@
v1.11 Marketplace Terms of Ser
GitHub Marketplace Terms of Service
Welcome to GitHub Marketplace ("Marketplace")! We're happy you're here. Please read these Terms of Service ("Marketplace Terms") carefully before accessing or using GitHub Marketplace. GitHub Marketplace is a platform that allows you to purchase developer products (for free or for a charge) that can be used with your GitHub.com account ("Developer Products"). Although sold by GitHub, Inc. ("GitHub", "we", "us"), Developer Products may be developed and maintained by either GitHub or by third-party software providers, and may require you to agree to a separate terms of service. Your use and/or purchase of Developer Products is subject to these Marketplace Terms and to the applicable fees and may also be subject to additional terms as provided by the third party licensor of that Developer Product (the "Product Provider").

By using Marketplace, you are agreeing to be bound by these Marketplace Terms.

Effective Date: May 22, 2017

A. GitHub.com's Terms of Service
Marketplace is provided by GitHub, and is governed by either the Terms of Service or the Corporate Terms of Service ("GitHub Terms"), depending on the type of account you're on, as well as these Marketplace Terms. If you configure the Developer Products to work with one or more accounts on the GitHub.com website, your use of the Developer Products will also be governed by your applicable GitHub Terms. Any capitalized terms not defined in this document will be defined in your applicable GitHub Terms.

You may not use a Developer Product to violate your applicable GitHub Terms. Many of these Developer Products are used exclusively for performing automated tasks. In addition, multiple Users may direct the actions of a Developer Product. However, if you purchase and/or set up a Developer Product on your account, or you are an owner of an account with an integrated Developer Product, then you will be responsible for the Developer Product's actions that are performed on or through your account.

B. Use Requirements
In order to use Marketplace, you must be 13 years of age or older (if you live in the United States; if you live in another country, you must comply with your country's minimum age laws), have a valid GitHub account, and have agreed to your applicable GitHub Terms and these Marketplace Terms.

If you are agreeing to these Marketplace Terms on behalf of a company, organization, or other legal entity, you represent that you have the authority to bind that entity, its affiliates, and all users who access the Marketplace on its behalf to these Marketplace Terms. If you do not have authority, you must not accept these Marketplace Terms and you may not use the Marketplace services.

C. Developer Products and Product Providers
If you install and/or purchase a Developer Product, then you are purchasing the Developer Products from GitHub and you are required to make the related payments directly to GitHub. However, you are receiving access to and the rights to use that Developer Product from a Product Provider, not from GitHub (unless it's a GitHub-owned Developer Product). The Product Provider is solely responsible for the Developer Product it provides, the content therein, and any claims that you or any other party may have relating to that Developer Product or your use of that Developer Product.

We are not a party to the agreement between you and the Product Provider with respect to that Developer Product. We are not responsible for that Developer Product, the content in it, or any claims that you or any other party may have relating to that Developer Product or your use of that Developer Product. However, we are a third party beneficiary of the agreement between you and the Product Provider for each Developer Product, and we will have the right (and will be deemed to have accepted the right) to enforce that agreement against you as a third party beneficiary.

D. Payment, Billing Schedule, and Cancellation
All payments for Developer Products will go through GitHub. The terms of your payment and fees will be governed by Section K. Payment, or the analogous section of your applicable GitHub Terms. By using the Marketplace, you agree to pay GitHub any charge incurred in connection with your purchase of the Developer Product. Each purchase is an electronic contract between you and GitHub, and you and the Product Provider. You are responsible for providing us with a valid means of payment for purchases of Developer Products. If you are only purchasing free Developer Products, you are not required to provide payment information.

Billing Schedule; No Refunds. Your payment schedule is determined by the payment schedule you chose when you created your GitHub account (e.g. free, monthly, annual). For monthly or yearly payment plans, Marketplace purchases are billed in advance on a monthly or yearly basis respectively and are non-refundable. There will be no refunds or credits for partial months of service, downgrade refunds, or refunds for months unused; however, the service will remain active for the length of the paid billing period. If you would like to cancel the Developer Product services, you can do so by going into your Settings in the global navigation bar at the top of the screen.

If you would have a question, concern, or dispute regarding your billing, please contact GitHub Support.

E. Your Data and GitHub's Privacy Policy
Privacy. When you purchase or subscribe to a Developer Product, GitHub must share certain Personal Information (as defined in the GitHub Privacy Statement) with the Product Provider in order to provide you with the Developer Product, regardless of your privacy settings. Depending on the requirements of the Developer Product you choose, GitHub may share as little as your user account name, ID, and primary email address or as much as access to the content in your repositories, including the ability to read and modify your private data. You will be able to view the scope of the permissions the Developer Product is requesting, and accept or deny them, when you grant it authorization via OAuth. In line with GitHub's Privacy Statement, we will only provide the Product Provider with the minimum amount of information necessary for the purpose of the transaction.

If you cancel your Developer Product services and revoke access through your account settings, the Product Provider will no longer be able to access your account. The Product Provider is responsible for deleting your Personal Information from its systems within its defined window. Please contact the Product Provider to ensure that your account has been properly terminated.

Data Security Disclaimer. When you purchase or subscribe to a Developer Product, the Developer Product security and their custodianship of your data is the responsibility of the Product Provider. You are responsible for understanding the security considerations of the purchase and use of the Developer Product for your own security, risk and compliance considerations.

F. Rights to Developer Products
The rights granted to you to use any Developer Product are personal to you, and are not transferrable to any third parties, such as your end users. Any rights to provide or resell Developer Products to third parties must be granted directly by the Product Provider.

G. Updates to Developer Products
From time to time, GitHub.com may check with remote servers (hosted by GitHub or by third parties) for available updates to Developer Products, including but not limited to bug fixes or enhanced functionality. You agree that such updates will be automatically requested, downloaded, and installed without further notice to you.

H. Developer Product Blocking
GitHub may block a Developer Product from our servers, or disable its functionality, for legal or policy reasons. In the event that we must block or disable a Developer Product, we will work with the Product Provider to notify affected users.

I. Disclaimer; Limitation of Liability; Release and Indemnification
Disclaimer. Your use of Marketplace and any Developer Products obtained through Marketplace is at your sole risk. Other than as expressly stated, GitHub provides Marketplace and Developer Products “AS IS” and “AS AVAILABLE.” GitHub does not make or imply any warranties or commitments about Marketplace and Developer Products, including but not limited to the specific functionality available through Marketplace and Developer Products, their reliability, availability, or ability to meet your need.

We reserve the right at any time and from time to time to modify or discontinue, temporarily or permanently, Marketplace (or any part of it) with or without notice.

Limitation of Liability. You understand and agree that GitHub will not be liable to you or any third party for any loss of profits, use, goodwill, or data, or for any incidental, indirect, special, consequential or exemplary damages, however arising, that result from: (i) your use or inability to use Marketplace or any Developer Products; (ii) any modification, price change, suspension or discontinuance of Marketplace or Developer Products; (iii) Marketplace generally or the software or systems that make Marketplace available; (iv) unauthorized access to or alterations of your transmissions or data; (v) statements or conduct of any third party, Product Provider, or Developer Product on Marketplace; (vi) any other user interactions that you input or receive through your use of Marketplace; or (vii) any other matter relating to Marketplace.

Release and Indemnification. If you have a dispute with one or more Product Providers, you agree to release GitHub from any and all claims, demands and damages (actual and consequential) of every kind and nature, known and unknown, arising out of or in any way connected with such disputes.

You agree to indemnify us, defend us, and hold us harmless from and against any and all claims, liabilities, and expenses, including attorneys’ fees, arising out of your use of Marketplace, including but not limited to your violation of these Marketplace Terms, provided that GitHub (1) promptly gives you written notice of the claim, demand, suit or proceeding; (2) gives you sole control of the defense and settlement of the claim, demand, suit or proceeding (provided that you may not settle any claim, demand, suit or proceeding unless the settlement unconditionally releases GitHub of all liability); and (3) provides to you all reasonable assistance, at your expense.

J. Miscellanea
Governing Law. You agree that these Marketplace Terms and your use of the Developer Products are governed under California law and any dispute related to the Developer Products must be brought in a tribunal of competent jurisdiction located in or near San Francisco, California.

Non-Assignability. GitHub may assign or delegate these Marketplace Terms and/or the GitHub's Privacy Statement, in whole or in part, to any person or entity at any time with or without your consent. You may not assign or delegate any rights or obligations under the Marketplace Terms or Privacy Statement without our prior written consent, and any unauthorized assignment and delegation by you is void.

Severability, No Waiver, and Survival. If any part of these Marketplace Terms are held invalid or unenforceable, that portion of the Marketplace Terms will be construed to reflect the parties’ original intent. The remaining portions will remain in full force and effect. The failure of GitHub to exercise or enforce any right or provision of these Marketplace Terms shall not constitute a waiver of such right or provision. Our rights under these Marketplace Terms will survive any termination of these Marketplace Terms.

No Modifications; Complete Agreement. These Marketplace Terms may only be modified by a written amendment signed by an authorized representative of GitHub, or by the posting by GitHub of a revised version. These Marketplace Terms, together with GitHub's Privacy Statement, represent the complete and exclusive statement of the agreement between you and us. These Marketplace Terms supersede any proposal or prior agreement oral or written, and any other communications between you and GitHub relating to the subject matter of these terms.

Section Headings. Throughout these Marketplace Terms, each section includes titles of the following terms and conditions. These section titles are not legally binding.

License to GitHub Policies. These Marketplace Terms are licensed under the Creative Commons Attribution license. You may use it freely under the terms of the Creative Commons license.

Contact Us. Questions about the Marketplace Terms? Contact us.

You agreed to these terms 2 days ago.
25 changes: 0 additions & 25 deletions README.md

This file was deleted.

28 changes: 0 additions & 28 deletions agentic_app_manager/analysis_options.yaml

This file was deleted.

Loading
Loading