ManpowerGroup
ManpowerGroup
Human First, Digital Always
Human First, Digital Always
Why this Challenge?

AI is moving from experimentation to everyday operations, and the conversation has shifted from technological potential to human performance. Leaders must run the business of Now while preparing their people for what comes Next.

ManpowerGroup created these challenges to partner with startups building human-first, AI-powered solutions that help organizations and workers navigate this duality; delivering results today while building the skills and systems for tomorrow.

Our Startup Challenges
Agentic AI for Workforce Delivery at Scale

The context:
Always-on talent, human judgment when it counts. Organizations need to fill roles, fast, yet workforce delivery often depends on human availability or multiple vendors and tools which are time consuming to manage. How can agentic AI add value at scale, particularly to solve redeployment when a temporary assignment ends?

What we are looking for:
Agentic AI for always-on workforce delivery. We are looking for examples where AI provides speed and scale, humans give the edge. AI does the heavy lifting; humans make the calls that count.

Agentic AI for Workforce Delivery at Scale

The context:
Always-on talent, human judgment when it counts. Organizations need to fill roles, fast, yet workforce delivery often depends on human availability or multiple vendors and tools which are time consuming to manage. How can agentic AI add value at scale, particularly to solve redeployment when a temporary assignment ends?

What we are looking for:
Agentic AI for always-on workforce delivery. We are looking for examples where AI provides speed and scale, humans give the edge. AI does the heavy lifting; humans make the calls that count.

Agentic AI for Workforce Delivery at Scale

The context:
Always-on talent, human judgment when it counts. Organizations need to fill roles, fast, yet workforce delivery often depends on human availability or multiple vendors and tools which are time consuming to manage. How can agentic AI add value at scale, particularly to solve redeployment when a temporary assignment ends?

What we are looking for:
Agentic AI for always-on workforce delivery. We are looking for examples where AI provides speed and scale, humans give the edge. AI does the heavy lifting; humans make the calls that count.

Skills as Currency, People in Control

The context:
Your skills, your data, your next move AI has the potential to reshape jobs at scale – and people need to see where their skills fit and feel ownership of their careers. How do we put people in the driving seat and ensure they are prepared for tech advancements to make their work lives better?

What we are looking for:

We’re looking for AI solutions that put people in control of their careers—making skills visible, portable and actionable. Help individuals understand where their skills fit, own their data, and confidently navigate what’s next as jobs and technology evolve.

Skills as Currency, People in Control

The context:
Your skills, your data, your next move AI has the potential to reshape jobs at scale – and people need to see where their skills fit and feel ownership of their careers. How do we put people in the driving seat and ensure they are prepared for tech advancements to make their work lives better?

What we are looking for:

We’re looking for AI solutions that put people in control of their careers—making skills visible, portable and actionable. Help individuals understand where their skills fit, own their data, and confidently navigate what’s next as jobs and technology evolve.

Skills as Currency, People in Control

The context:
Your skills, your data, your next move AI has the potential to reshape jobs at scale – and people need to see where their skills fit and feel ownership of their careers. How do we put people in the driving seat and ensure they are prepared for tech advancements to make their work lives better?

What we are looking for:

We’re looking for AI solutions that put people in control of their careers—making skills visible, portable and actionable. Help individuals understand where their skills fit, own their data, and confidently navigate what’s next as jobs and technology evolve.

Selection Criteria
Future of Work Impact

Clear value proposition for human-first, AI-powered workforce transformation.

Innovation & Differentiation

Original solution with a strong innovation edge and defensible approach.

Scalability Potential

Ability to scale globally across markets, industries, and workforce segments.

Team and Vision

Committed team with a clear long-term vision and execution capability.

Market Traction

Demonstrated adoption, customer validation, or strong product-market fit.

Rewards
Play an active role in our six business sectors

Your solution, product or service demonstrates that you can play an active role in LVMH's ecosystem and deliver on a large scale. Whether it be the creation process, the omnichannel customer journey, or operation and manufacturing, you support the Group's legacy of excellence and innovation in all areas of its 6 business sectors.

  • Fashion & Leather Goods

  • Wines & Spirits

  • Perfumes & Cosmetics

  • Watches & Jewelry

  • Other Activities

  • Selective Retailing

Timeline

47 Days 04 Hours

left to apply

left to apply

FAQ

Who can apply?

Can I apply for more than one Startup Challenge/Award?

What is the difference between a Startup Challenge and an Award?

Is applying for an Award or Startup Challenge free?

Who can apply?

Can I apply for more than one Startup Challenge/Award?

What is the difference between a Startup Challenge and an Award?

Is applying for an Award or Startup Challenge free?

Who can apply?

Can I apply for more than one Startup Challenge/Award?

What is the difference between a Startup Challenge and an Award?

Is applying for an Award or Startup Challenge free?

******* JAVASCRIPT *******/ /** * Allowed parameters for the tracking code */ const allowedParameters: string[] = [ 'ca', 'utm', 'utm_source', 'utm_medium', 'utm_campaign', 'utm_term', 'utm_content', // 'cat', // Blog // 'ag_t', 't', // Warning this parameters is used like tracking for Challenges partners "Agorize", 'wid' // Paramters for revolugo urls ]; /** * Rreturn the object with the allowed parameters * @param ownParams URLSearchParams * @returns Object */ const ownCtmParameters = (ownParams: URLSearchParams) => { let obj = {}; for (const [key, value] of ownParams.entries()) { //console.log("ownCtmParameters key: ", key); if (allowedParameters.includes(key)) { // console.log("PAss key: ", key); obj[key] = value; } else { // console.log("No PAss key: ", key); } } return obj; }; /** * Insert the tracking code in the anchor elements * @returns void */ const insertTrackingCode = () => { // Get tracking parameters from URL search params const searchParams = new URLSearchParams(window.location.search); // Convert search params to object const filteredParams = ownCtmParameters(searchParams); // If no parameters, return early if (Object.keys(filteredParams).length === 0) { return; } const paramsString = new URLSearchParams(filteredParams).toString(); const baseUrl = window.location.origin; // Get all anchor elements from the current document const anchors = document.querySelectorAll('a'); for (const anchor of anchors) { const href = anchor.getAttribute('href'); const target = anchor.getAttribute('target'); if (!href || target === '_blank') { continue; } // Normalize href const normalizedHref = href.startsWith('https') ? href : href.replace(/^\.\//, '/'); try { const url = normalizedHref.startsWith('http') ? new URL(normalizedHref) : new URL(normalizedHref, baseUrl); const baseUrlObj = new URL(baseUrl); const isExternal = url.origin !== baseUrlObj.origin && !normalizedHref.includes('vivatech.com') && !normalizedHref.includes('vivatechnology.com'); if (isExternal) { continue; } // Add tracking parameters const hasExistingParams = url.search.length > 0; if (hasExistingParams) { url.search += '&' + paramsString; } else { url.search = '?' + paramsString; } anchor.setAttribute('href', url.origin + url.pathname + url.search + (url.hash || '')); } catch (e) { // If href is not a valid URL, skip it continue; } } }; /******* END JAVASCRIPT *******/ /******* INTEGRATION *******/ // Or with DOMContentLoaded document.addEventListener('DOMContentLoaded', () => { insertTrackingCode(); }); /******* END INTEGRATION *******/