Asana

Asana

Task management and project collaboration platform

Overview

Company Historically Provides H1B Sponsorship

Asana helps teams organize, assign, and track work to boost productivity. Its platform lets users create tasks and projects, assign owners, set due dates, and monitor progress through views like lists, boards, and timelines. Real-time insights and over 200 integrations with other tools help teams coordinate and adapt to changing priorities. Asana runs on a subscription model, with customers paying monthly or yearly for access, plus optional premium features. It differentiates itself through focused onboarding support for data migration, a wide network of integrations, and clear, shared visibility into who is responsible for what and when it is due. The goal is to help organizations collaborate more effectively, deliver quality work faster, and scale work management from small teams to large enterprises.

About Asana

Simplify's Rating
Why Asana is rated
B-
Rated B on Competitive Edge
Rated B on Growth Potential
Rated C on Differentiation

Industries

Data & Analytics

Enterprise Software

Company Size

1,001-5,000

Company Stage

IPO

Headquarters

San Francisco, California

Founded

2008

Get referred to Asana

See people who can refer or advise you

Simplify Jobs

Simplify's Take

What believers are saying

  • AI Studio passed $6 million ARR in FY2026, with over 50% sequential growth.
  • Q1 FY2026 delivered Asana's first non-GAAP profitability and stronger free cash flow.
  • AI Teammates beta onboarded 200-plus customers, including FedEx and CoreWeave users.

What critics are saying

  • Anthropic, OpenAI, and Microsoft can bundle competing agents into existing workflows.
  • Asana still depends on seat-based pricing while AI Studio shifts value away from seats.
  • If AI Teammates disappoint after beta, Asana loses its main differentiation by 2027.

What makes Asana unique

  • Work Graph links tasks, projects, portfolios, and goals across 18 years of data.
  • AI Teammates operate inside workflows with governance, persistence, and shared company memory.
  • Asana embeds AI in execution, not standalone chat, unlike Slack-first agents.

Help us improve and share your feedback! Did you find this helpful?

Funding

Total Funding

$414.5M

Above

Industry Average

Funded Over

9 Rounds

Post IPO Equity funding comparison data is currently unavailable. We're working to provide this information soon!
Post IPO Equity Funding Comparison
Coming Soon

Benefits

Mental Health Support

Wellness Program

Professional Development Budget

Family Planning Benefits

401(k) Retirement Plan

Stock Price

Growth & Insights and Company News

Headcount

6 month growth

0%

1 year growth

1%

2 year growth

1%
Yahoo Finance
Sep 3rd, 2026
Asana beats Q2 revenue expectations with $216.4M but stock drops 13.7%

Asana reported second-quarter revenue of $216.4 million, beating analyst estimates of $214.3 million and marking 9.9% year-on-year growth. The work management platform also exceeded expectations on adjusted earnings per share, posting $0.10 versus the $0.09 consensus estimate. Despite beating expectations, Asana's stock dropped 13.7% following the announcement. The company guided next quarter's revenue to around $218 million, roughly in line with analyst forecasts, representing 8.4% year-on-year growth. Asana's operating margin improved to negative 19% from negative 25.1% in the prior-year quarter. Free cash flow margin reached 18.5%, up from 16.7% in the previous quarter. The company now has 26,778 customers paying more than $5,000 annually. Asana slightly raised its full-year revenue guidance to $861 million at the midpoint from $859.5 million.

Celestify
Aug 24th, 2026
The AI models are the easy part.

The AI models are the easy part. Daria-Georgiana Chiriac August 24, 2026 Getting an AI model to do something impressive takes minutes these days. A support assistant answers questions faster than a human would. An internal tool summarises in seconds what used to take someone hours to find. Product teams ship things that would have been unreasonable to attempt a few years ago, and the first version often works the same day. The most recent and relevant example of this last one is Asana's migration away from Enzyme, using Codex. OpenAI claims the work would have taken 5 years pre-AI, which is extremely questionable, though that's beside the point in fairness. Bottom line, something that Asana considered expensive and painful was done in 2 weeks by AI, cheap enough for them to be happy with it. That is the part of AI everyone can see, whereas the harder part is after the demo when you still have to turn it into proper software. AI doesn't replace the system around it. Lately there seems to be a lot of temptation (and sadly reality) where people treat the model as the product. User asks something, model thinks, model responds, done. Most real world software doesn't work like that. It has users, permissions, and real data that has to come from somewhere. Every action has very specific consequences, some things need to happen immediately, some can happen later, and some absolutely must not happen twice. In software, Celestify Ltd. call this deterministic behaviour. In contrast to AI, which is software with a probabilistic component inside it. Sometimes that component is incredibly powerful, like it can understand an email, simplify and explain something messy, pull information out of a long/boring document, write code, reason about a request, or decide which tool to use. That in itself doesn't mean that AI should be responsible for everything around it. If I already know that customer X has three unpaid invoices, I don't need GPT-5.6 to work that out for me. A simple database query tells me that already. Whereas if I need to decide whether an email is a cancellation request, an angry complaint or somebody asking for a copy of an invoice, that's a very good place for a model. The engineering judgement is knowing where the line between the two sits. Decide what doesn't need a model. Celestify Ltd. is increasingly seeing a pattern emerge as models become easier to use where everything starts getting pushed through it. A perfectly deterministic step becomes another instruction in the system prompt. Check whether the customer has an active subscription, work out which plan they're on, decide whether they're allowed to do this. Your app already knows all three answers, and you've just swapped something fast, cheap and deterministic for something slower, metered and capable of being wrong. The opposite mistake is real too, where trying to handle genuinely messy human input with 400 `if` statements isn't clever engineering either. The best AI systems are hybrid, and use normal software vs models where they each shine respectively. The fact that AI can do something does not mean it should. The demo has no idea what happens when things go wrong. The happy path is very easy to build now, which is one reason AI demos are so seductive. Give the model the right input under the right conditions and it just feels like magic! But in reality, when an app is running in production, and the model takes 40 seconds instead of 4 seconds, what happens then? When the provider returns an error halfway through a workflow, what happens then? The user clicks the button 3x more because nothing is happening, and you've just run the same £2 operation 4 times in a row. The model confidently returns malformed data, or calls the right tool with the wrong arguments, or produces an answer that is technically valid, yet completely useless. These are everyday software problems, and they have software answers: retries, timeouts, queues, validation, idempotency, fallbacks, permissions, logs and sensible UX around failure. None of that makes for an exciting demo, and it is also exactly the difference between a demo and a product. The worst failures are those that return 200 OK. Traditional software has a useful habit of breaking loudly. Something throws an exception, a request fails, an alert fires, someone swears at Datadog. AI fails beautifully instead. The API returns successfully, latency looks normal and nothing shows up in the logs. Instead the answer is just bad. Maybe a prompt changed, maybe the wrong data was retrieved, or the most likely, your customers started giving it inputs you didn't anticipate. The system can happily keep returning `200 OK` while becoming less useful every day. So monitoring AI works differently. You still care about uptime and latency, but you have to care about output quality as well. Is it answering the right question? Did it extract the right information? Would a human agree with the decision? Are users correcting it more often than they did last month? Answering those means testing real outputs, keeping examples of good and bad behaviour, evaluating changes properly and actually looking at what the system does in production. Otherwise your first quality alert is a customer emailing to say the thing has been wrong for two weeks. Then there is the small matter of the bill. AI is often hilariously cheap at prototype scale. You build something useful, run it 50x and spend £1.84. Then real people start using it. 1k users slowly become 10k users, context gets larger, you add another model call because the first one wasn't quite reliable enough, agents start calling tools, failed jobs retry, you name it. By then the economics look different. That doesn't quite make AI expensive though, because it's still absurdly cheap compared with the human work it replaces. Instead it makes cost an architectural concern, such that you should know roughly what an important workflow costs, what happens to that number at 10x the volume, and what you're getting back for the money. If an AI feature costs £4k/mo and removes £30k of work, nobody sensible should care about the £4k spend. But if it costs £4k/mo and nobody can tell whether customers would notice you switching it off, you have a different problem. The fix is boring though. Use caching, minimise model calls, reduce context where possible, use a smaller model and most importantly use code instead of inference when the answer is already known. The model won't be offended! Good engineers matter more than ever. There's an understandable question hanging over software engineers at the moment, which is "if AI can write the code, what is my job?" The answer is pretty much what it always was, which is everything around the code. Deciding what should be built. Understanding the existing system before changing it. Working out what AI should and shouldn't be responsible for. Designing the interfaces between the deterministic and probabilistic parts of the product. Making sensible security decisions. Knowing what happens when something fails. Keeping the system understandable enough that somebody can change it six months later. Working out whether an impressive technical capability solves a problem anybody actually has. And, unfortunately the most painful one at the moment, reviewing what the agents produce. Asana's Enzyme migration is a good example of that too. Engineers decided what needed to change, gave the agents an environment to work in, checked their progress and reviewed the proposed changes. AI moved the implementation boundary dramatically, but engineering judgement mattered more than ever. This is where some of the "AI replaces software engineers" conversation gets muddled. The human effort required to turn an idea into code is collapsing, but code was never the whole job. Let's build boring systems around clever models. Models will keep getting better! Six months from now they'll do things that are awkward today, and six months after that Celestify Ltd.'ll move the line again. Predicting exactly where it stops is a waste of time. What you can do is build systems that are comfortable with the change. Keep model providers replaceable where you can, keep business logic outside the prompt and make model outputs structured and validate them before trusting them. Measure quality, cost and more than ever, know who owns the feature after it launches. Basically, make the system around the model boring. Boring is good, because the clever part will change every three months. How Celestify Ltd. think about AI at Celestify. Celestify Ltd. is extremely bullish about what AI makes possible. Celestify Ltd. use it constantly, Celestify Ltd. build with it, its engineers use coding agents, and Celestify Ltd. put models into products and internal workflows where they remove crazy amounts of manual work. Celestify Ltd. is less interested in adding AI to something because somebody wants an AI feature on the roadmap. The question Celestify Ltd. start with is "what problem are we solving? which pain are we removing?" Sometimes the answer involves an agent, sometimes it involves retrieval, a model and three integrations, sometimes it involves a single skill.md file. Sometimes, it doesn't need a model at all. Making the impressive bit work is getting easier every month. Making the whole thing useful, reliable, secure and economically sensible is still the job. If you've got an AI feature in that grey area and can't tell which side of the line it sits on, it's worth working that out before you build it and Celestify Ltd. is happy to help you think it through.

Today in New York
Aug 18th, 2026
Vaiz releases version 2.90 with bulk edits and persistent collaboration; TaskTracker.best publishes updated review.

Vaiz releases version 2.90 with bulk edits and persistent collaboration; TaskTracker.best publishes updated review. Vaiz has released version 2.90 introducing bulk edits across tasks and milestones, marking its tenth numbered release since September 2025 NY, UNITED STATES, August 18, 2026 / EINPresswire.com / - Vaiz, a Cyprus-based work management platform, has released version 2.90 on July 5, 2026, introducing bulk edit capabilities across tasks and milestone cards. Following the release, independent review publication TaskTracker.best has published a refreshed in-depth Vaiz platform review that documents the version 2.90 additions alongside a review of the ten numbered releases the Limassol-based platform has shipped since accelerating to a two-week release cycle. Senior reviewer Imogen Patel notes that Vaiz's release cadence has become one of the defining characteristics distinguishing the platform from established competitors. Where incumbents such as Asana, monday.com, and ClickUp typically deliver major feature updates on quarterly or biannual cycles, Vaiz's two-week rhythm has translated into consistent shipping of both foundational features and quality-of-life refinements throughout the first half of 2026. The refreshed review documents the substantive additions delivered across the 2026 release train. Version 2.86, released on May 14, added a native GitHub integration and interactive 3D models in the editor. Version 2.87 on May 25 introduced an OAuth-based Model Context Protocol server that connects Vaiz to AI assistants including Claude. Version 2.88 on June 8 delivered a redesigned first-run experience and inline editing for subtasks. The recent 2.90 release adds bulk edits across task and milestone cards and improves the collaboration engine to keep workspaces current when users return to the app after periods away. TaskTracker.best has also expanded coverage of Vaiz's positioning against incumbent work-management platforms. An updated overview of Vaiz free plan and pricing tiers documents the free tier for teams of up to ten users, the Pro plan at $5 per user per month, and the Premium plan at $9 per user per month, alongside the on-premises Enterprise edition for organizations with data residency requirements. The publication's editorial framework prioritizes what Patel describes as "day-three usability" - how a work-management tool behaves once teams have moved beyond onboarding templates into real workload. The 2026 refresh scores Vaiz against three signals: notification volume during a typical workweek, mobile editing viability for non-admin users, and search relevance in workspaces containing more than 500 tasks. A dedicated Vaiz vs Asana comparison for cross-functional teams addresses the most common procurement question surfaced by readers evaluating Vaiz for a first work-management standard against Asana's incumbent installed base. TaskTracker.best is affiliate-supported through referral partnerships with several evaluated vendors and maintains editorial independence over comparison content. About Vaiz Vaiz is a Cyprus-based work management platform that combines tasks, documents, and team collaboration in a single workspace. Founded in 2024 and headquartered in Limassol, Vaiz operates on a two-week release cycle. The platform includes a built-in AI assistant, embedded Figma, Miro, and other design tool viewers, and a Migration Center supporting one-click transfers from Jira, Asana, Trello, YouTrack, Linear, and Notion. About TaskTracker.best TaskTracker.best is an independent software evaluation publication covering modern task and project-management platforms with particular focus on Vaiz and comparable modern tools. The editorial team publishes buyer-focused reviews, head-to-head comparisons, and category roundups aimed at operations, marketing, agency, and cross-functional teams. Legal Disclaimer: EIN Presswire provides this news content "as is" without warranty of any kind. Today in New York do not accept any responsibility or liability for the accuracy, content, images, videos, licenses, completeness, legality, or reliability of the information contained in this article. If you have any complaints or copyright issues related to this article, kindly contact the author above.

HighDreams LLC
Aug 6th, 2026
Best AI software for managing small business operations.

Best AI software for managing small business operations. No Comments Small business owners don't have a dedicated IT department to evaluate every new AI tool that launches - but the right software can quietly take over hours of bookkeeping, scheduling, customer replies, and admin work every week. This guide walks through the categories of AI software that actually move the needle on day-to-day operations, what to look for before buying, and where off-the-shelf tools reach their limit. Quick answer: The best AI software for small business operations depends on the bottleneck you're trying to fix. AI-enhanced accounting tools (QuickBooks, Xero) save time on bookkeeping, AI CRMs (HubSpot, Zoho, Salesforce) automate sales follow-up, AI project tools (Asana, ClickUp, Monday.com) keep teams organized, and AI workflow platforms (Zapier, Make) connect everything together. Most small businesses see the best ROI by combining two or three focused tools rather than one all-in-one platform. What to look for before you buy AI business software. * Fits an existing bottleneck - pick tools that solve a specific, recurring pain point (invoicing, lead follow-up, scheduling) rather than adopting AI for its own sake. * Integrates with what you already use - a tool that doesn't connect to your existing accounting software, CRM, or e-commerce platform creates more manual work, not less. * Clear data handling terms - check what the vendor does with your business and customer data, and whether it's used to train their models by default. * Reasonable learning curve - small teams rarely have time for a long onboarding process; look for tools with fast setup and templates. * Scales without a full re-platform - the tool should have room to grow with the business rather than needing replacement at the next stage. AI-powered accounting and bookkeeping. Tools like QuickBooks and Xero now include AI features for auto-categorizing transactions, flagging anomalies, and generating cash-flow forecasts. These reduce the manual reconciliation work that typically falls on an owner or a part-time bookkeeper. AI CRM and sales tools. Platforms such as HubSpot, Zoho CRM, and Salesforce use AI to score leads, draft follow-up emails, and summarize call notes, helping small sales teams follow up faster without adding headcount. AI project and task management. Asana, ClickUp, Monday.com, and Notion have added AI assistants that can turn meeting notes into tasks, summarize project status, and draft updates - useful for keeping small, cross-functional teams aligned without extra status meetings. AI customer support and chatbots. AI chat and helpdesk tools (including platforms like Intercom and Zendesk, or a custom-built chatbot) can answer common questions instantly and escalate anything complex to a human - extending support hours without adding staff. AI scheduling and meeting tools. Scheduling assistants and AI meeting-note tools (such as Calendly and Otter.ai) cut down the back-and-forth of booking calls and the time spent writing up notes afterward. AI marketing and content tools. AI writing and content tools help small teams produce more marketing material - social posts, product descriptions, email campaigns - without a dedicated content team, though output should always be reviewed for accuracy and brand voice before publishing. AI workflow automation. Tools like Zapier and Make connect the other categories together - for example, automatically creating a CRM contact and a project task the moment a new lead fills out a form. | Category | Best For | Example Tools | Watch Out For | | Accounting & bookkeeping | Reducing manual reconciliation | QuickBooks, Xero | AI categorization still needs periodic human review | | CRM & sales | Faster lead follow-up | HubSpot, Zoho, Salesforce | Draft messages should be reviewed, not auto-sent, early on | | Project management | Team alignment and status tracking | Asana, ClickUp, Monday.com | Can become another tool to check if not integrated with existing workflow | | Customer support | Instant answers, extended coverage hours | Intercom, Zendesk, custom chatbot | Needs clear escalation path to a human for complex issues | | Workflow automation | Connecting tools together | Zapier, Make | Complex multi-step automations are easier to build custom than to force into a template | Pricing and specific feature sets change frequently - confirm current plans directly with each vendor before purchasing. How to choose and implement AI software: A step-by-step approach. * Identify the single biggest time drain in daily operations - invoicing, scheduling, customer replies, or reporting. * Shortlist two or three tools in that category and compare based on integration with your existing stack, not just feature lists. * Run a free trial or pilot with real (or anonymized) data before committing to a paid plan. * Set a data-handling checklist - confirm what the vendor stores, for how long, and whether your data trains their models. * Train the team on the workflow, not just the tool - adoption fails more often from unclear process than from bad software. * Review results after 60-90 days and decide whether to expand usage, switch tools, or add the next automation. Expert tip: Off-the-shelf AI tools are excellent for common, well-defined tasks. Once a workflow is specific to how your business actually operates - a multi-step approval process, a custom order-routing rule, a niche integration between two platforms - a custom-built automation usually outperforms trying to force a generic tool to fit. Common mistakes small businesses Make. * Buying an all-in-one platform before confirming it actually replaces the specific tools already in use. * Letting AI-drafted customer messages send automatically without review during the first few months. * Ignoring data retention and training-data settings when signing up for a new AI tool. * Adding tools faster than the team can adopt them, leading to abandoned subscriptions. * Not measuring time saved, making it hard to justify the subscription cost later. Business applications: where the ROI actually shows up. The clearest ROI from AI operations software tends to show up in three places: fewer hours spent on repetitive admin work, faster response times to customers and leads, and fewer errors in processes like invoicing or order handling. For most small businesses, the highest-leverage move isn't buying more software - it's connecting the tools already in place so information flows between them automatically. Why choose high Dreams LLC. High Dreams LLC helps small businesses go beyond off-the-shelf AI tools with custom chatbots, voice agents, and workflow automation built around how the business actually operates - connecting the platforms already in use rather than replacing them. High Dreams LLC also manage e-commerce operations across Amazon, Walmart, Etsy, and eBay for sellers who want the automation and the execution handled together. Frequently asked questions. What is the best AI software for a very small business with no IT staff? Start with one tool that solves your biggest time drain - often AI-enhanced accounting or a CRM with built-in follow-up automation - rather than adopting several tools at once. Is AI software expensive for small businesses? Most major platforms offer small-business or starter tiers, and many AI features are add-ons to tools you may already use. Confirm current pricing directly with each vendor since plans change frequently. Can AI software replace a virtual assistant or operations manager? It can absorb repetitive tasks like data entry, scheduling, and first-line customer replies, but judgment-heavy work and relationship management still benefit from a human, at least as an oversight layer. Should I build a custom AI tool instead of buying software? Custom automation makes sense once a workflow is specific enough that generic tools require heavy workarounds - for example, multi-system order routing or a non-standard approval chain. How do I know if an AI tool is handling my customer data safely? Check the vendor's data processing terms, ask whether your data is used to train their models by default, and confirm they support the data retention limits your business needs. Related reading. Post a comment.

VentureBeat
Aug 3rd, 2026
Asana's AI agents share memory across your company - but not your secrets.

Asana's AI agents share memory across your company - but not your secrets. 4:14 pm, PT, August 3, 2026 Enterprise teams building AI agents keep hitting the same wall: a chatbot that can answer a prompt but can't remember what the last five people asked it, and can't tell you whether last month's version actually worked. In a fireside chat with VentureBeat's Sam Witteveen at VB Transform 2026, Asana's chief product officer, Arnab Bose, unpacked how his team tackled this problem with Agentic Work Management (AWM). The product treats AI agents as coachable teammates that operate alongside humans rather than as one-to-one assistants. For product builders and developers trying to move beyond basic integrations, Bose provided a look under the hood. He detailed how Asana engineered AWM, offering a blueprint for solving real-world bottlenecks and building agentic systems at scale. The Work Graph: 18 years of company data, repurposed. To build an operating system for human-agent teams, Asana needed a ready-made enterprise context graph. They built AWM on top of their 18-year-old architecture: the Work Graph. This graph-based database organizes information through a structure the company calls the Pyramid of Clarity. The smallest unit of work is a task with an assignee and a due date. Tasks belong to projects, projects roll up into portfolios, and portfolios connect to company-wide goals. The graph can help trace for example how a delayed design task impacts a corporate revenue goal. The Work Graph provides a real-time ledger of who does what, by when, and why. AWM leverages this architecture to create a multiplayer teammate. A standard AI copilot is stateless and tied to a single user's prompt. Because AWM plugs into the Work Graph, the AI can view overarching company goals, update project statuses, and share memory with human colleagues. "Because [the agent] is plugged into the Work Graph, it's not just looking at a particular prompt that you're sending it or looking at a particular individual's markdown file system on their local file," Bose said. "It's working off of that shared ledger for the whole company." AWM is already in production. Bose said Asana has "several customers live and successful on it," including FedEx, which published its own case study on the shift. Building in guardrails for confidential work. Shipping AWM to enterprise customers required Asana to solve several technical hurdles. The first was data governance. If an AI teammate acts across a company, it builds a shared memory by learning from workflows and human feedback. Bose highlighted a critical boundary problem: If an executive uses AWM to build workflows for a confidential project, the system must ensure the agent's updated memory does not leak context to an unauthorized employee who interacts with the same agent later. "[I] shouldn't be able to leverage that shared memory when I run the AI teammate if you created that memory using that same teammate on a project that is, let's say, a secret M&A project that I don't have access to," Bose said. Asana engineered a system of access controls to govern what triggers the creation of a memory versus the simple execution of a task. Second, AWM handles dynamic model routing to abstract prompt engineering away from the user. When a user assigns a task to an AI teammate (i.e., drafting a job description for a general manager role), the AI cross-references public job postings, Asana's internal style guide, and product requirement documents. For a complex task, the system automatically routes the prompt to a heavy frontier model - Bose pointed to Anthropic's Opus and OpenAI's models as examples - while lighter tasks get down-leveled to something faster and cheaper. "We don't want the knowledge worker to have to think through what the best possible prompt, context engineering, and attachments are that they should put into the task," Bose said. "It should feel as if you were assigning the task to a human being." This dynamic routing introduces a third challenge: billing abstraction. Agentic tasks vary in computational complexity, making credit burn rates unpredictable. "We don't want to get into a state where our customers are having to reason about the fact that some of these tasks... are way more complex than others and they'll be burning credits at different rates," Bose said, adding that unpredictable pricing risked customers throttling their own employees by capping how often they could run an AI teammate. To make AWM commercially viable, Asana designed its billing architecture to charge a static cost per task completion. The platform absorbs the complexity of model selection, token counts, and run limits to ensure predictable enterprise pricing. The problem with stateless chatbots. AWM targets a specific problem with current enterprise AI deployments: statelessness. Developers can easily connect large language models to enterprise tools like Slack, Google Drive, or Databricks using Model Context Protocol (MCP) integrations. However, basic chat-based agents lack persistence. Bose detailed a scenario where a user asks a chat agent to draft a marketing campaign based on historical performance and competitive research. The agent fetches data from external tools to answer the prompt, but the execution happens in a vacuum. It is a one-off task that benefits a single individual. It fails to create a reusable workflow for the next person building a similar campaign. "The challenge with that is that those calls are stateless, and they are not leveraging a shared company brain that is this graph-based database or a context graph," Bose said. AWM solves this by creating a permanent state. When an AI teammate inside AWM completes a task, the system records the metadata. It registers whether the completion improved the project status and how it moved higher-level company goals. Inside CoreWeave's product launches. Cloud provider CoreWeave is an early adopter using AWM to overhaul complex new product launches. "CoreWeave is using both our deterministic AI studio workflow rules as well as multiple AI teammates to do new product launches," Bose shared. In the past, CoreWeave product managers filled out complicated forms detailing infrastructure, parameters, and costs. Human reviewers manually evaluated these forms and broke them out into specific tasks for finance, marketing, and hardware teams. Under the AWM workflow, a product manager writes a standard Google document pointing to their product requirement documents. A deterministic AI workflow reads the document, automatically creates the project structure, and assigns tasks. Specialized agents then take over the execution. One agent then watches overall project status and flags bottlenecks; another, working inside individual tasks, forecasts infrastructure costs and recommends approvals when the numbers align with historical budgets. The system automatically triages the busywork while human beings focus on evaluating the AI's outputs. The frenemy problem. The dynamic gets complicated by the fact that the same frontier-model providers powering AWM under the hood - Anthropic, OpenAI - are also shipping their own competing agent products, like Anthropic's Claude in Slack (Tag). Pressed on the overlap, Bose didn't dispute the tension. "I think that's the reality that we all have to live in," he said. His case for AWM's staying power rests on Asana's 18 years of user-experience and workflow data, and prebuilt standard operating procedures for specific industries - expertise he argues raw frontier models don't have. A product like Tag can work well in Slack, he said, but it requires a highly curated channel and its own separate credentials for every downstream app it touches. "There's a big difference between the power of the model plus a lightweight way to demonstrate its value, and something that's pre-built... for true end-to-end use," Bose said.

Recently Posted Jobs

Sign up to get curated job recommendations

Asana is Hiring for 83 Jobs on Simplify!

Find jobs on Simplify and start your career today

Don't see your dream role? Check out thousands of other roles on Simplify. Browse all jobs →